Skip to content

Latest commit

 

History

History
30 lines (23 loc) · 1.38 KB

File metadata and controls

30 lines (23 loc) · 1.38 KB

SegmentBody

Properties

Name Type Description Notes
name string A human-friendly name for the segment [default to undefined]
key string A unique key used to reference the segment [default to undefined]
description string A description of the segment's purpose [optional] [default to undefined]
tags Array<string> Tags for the segment [optional] [default to undefined]
unbounded boolean Whether to create a standard segment (<code>false</code>) or a big segment (<code>true</code>). Standard segments include rule-based and smaller list-based segments. Big segments include larger list-based segments and synced segments. Only use a big segment if you need to add more than 15,000 individual targets. [optional] [default to undefined]
unboundedContextKind string For big segments, the targeted context kind. [optional] [default to undefined]

Example

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

const instance: SegmentBody = {
    name,
    key,
    description,
    tags,
    unbounded,
    unboundedContextKind,
};

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