Skip to content

Latest commit

 

History

History
34 lines (27 loc) · 1.44 KB

File metadata and controls

34 lines (27 loc) · 1.44 KB

ExpiringTarget

Properties

Name Type Description Notes
_id string The ID of this expiring target [default to undefined]
_version number The version of this expiring target [default to undefined]
expirationDate number [default to undefined]
contextKind string The context kind of the context to be removed [default to undefined]
contextKey string A unique key used to represent the context to be removed [default to undefined]
targetType string A segment&#39;s target type, <code>included</code> or <code>excluded</code>. Included when expiring targets are updated on a segment. [optional] [default to undefined]
variationId string A unique ID used to represent the flag variation. Included when expiring targets are updated on a feature flag. [optional] [default to undefined]
_resourceId ResourceId [default to undefined]

Example

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

const instance: ExpiringTarget = {
    _id,
    _version,
    expirationDate,
    contextKind,
    contextKey,
    targetType,
    variationId,
    _resourceId,
};

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