Skip to content

Latest commit

 

History

History
45 lines (38 loc) · 1.92 KB

File metadata and controls

45 lines (38 loc) · 1.92 KB

ExpandedSegment

Segment representation for Views API - contains only fields actually used by the Views service

Properties

Name Type Description Notes
key string A unique key used to reference the segment [default to undefined]
name string A human-friendly name for the segment [default to undefined]
environmentId string Environment ID of the segment [optional] [default to undefined]
environmentKey string Environment key of the segment [optional] [default to undefined]
description string Description of the segment [optional] [default to undefined]
creationDate number Creation date in milliseconds [optional] [default to undefined]
lastModifiedDate number Last modification date in milliseconds [optional] [default to undefined]
deleted boolean Whether the segment is deleted [optional] [default to undefined]
tags Array<string> Tags for the segment [optional] [default to undefined]
unbounded boolean Whether the segment is unbounded [optional] [default to undefined]
version number Version of the segment [optional] [default to undefined]
generation number Generation of the segment [optional] [default to undefined]
_links ParentAndSelfLinks [optional] [default to undefined]

Example

import { ExpandedSegment } from 'launchdarkly-api-typescript';

const instance: ExpandedSegment = {
    key,
    name,
    environmentId,
    environmentKey,
    description,
    creationDate,
    lastModifiedDate,
    deleted,
    tags,
    unbounded,
    version,
    generation,
    _links,
};

[Back to Model list] [Back to API list] [Back to README]