Skip to content

Latest commit

 

History

History
26 lines (19 loc) · 1.52 KB

File metadata and controls

26 lines (19 loc) · 1.52 KB

ViewLinkRequestSegmentIdentifiers

Properties

Name Type Description Notes
segmentIdentifiers Array<ViewLinkRequestSegmentIdentifier> Identifiers of the segments to link/unlink (environmentId and segmentKey) [default to undefined]
filter string Optional filter string to determine which resources should be linked. Resources only need to match either the filter or explicitly-listed keys to be linked (union). Uses the same queryfilter syntax as the segments list endpoint. Supported filters for segments: query, tags, keys, excludedKeys, unbounded, external, view, type [optional] [default to undefined]
environmentId string Required when using filter for segment resources. Specifies which environment to query for segments matching the filter. Ignored when only using explicit segmentIdentifiers (since each identifier contains its own environmentId). [optional] [default to undefined]
comment string Optional comment for the link/unlink operation [optional] [default to '']

Example

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

const instance: ViewLinkRequestSegmentIdentifiers = {
    segmentIdentifiers,
    filter,
    environmentId,
    comment,
};

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