Skip to content

Latest commit

 

History

History
24 lines (17 loc) · 963 Bytes

File metadata and controls

24 lines (17 loc) · 963 Bytes

BigSegmentTarget

Properties

Name Type Description Notes
userKey string The target key [default to undefined]
included boolean Indicates whether the target is included.<br />Included targets are always segment members, regardless of segment rules. [default to undefined]
excluded boolean Indicates whether the target is excluded.<br />Segment rules bypass excluded targets, so they will never be included based on rules. Excluded targets may still be included explicitly. [default to undefined]

Example

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

const instance: BigSegmentTarget = {
    userKey,
    included,
    excluded,
};

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