| 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] |
import { BigSegmentTarget } from 'launchdarkly-api-typescript';
const instance: BigSegmentTarget = {
userKey,
included,
excluded,
};
[Back to Model list] [Back to API list] [Back to README]