Skip to content

Latest commit

 

History

History
28 lines (21 loc) · 1.44 KB

File metadata and controls

28 lines (21 loc) · 1.44 KB

InstructionUserRequest

Properties

Name Type Description Notes
kind string The type of change to make to the removal date for this user from individual targeting for this flag. [default to undefined]
flagKey string The flag key [default to undefined]
variationId string ID of a variation on the flag [default to undefined]
value number The time, in Unix milliseconds, when LaunchDarkly should remove the user from individual targeting for this flag. Required if <code>kind</code> is <code>addExpireUserTargetDate</code> or <code>updateExpireUserTargetDate</code>. [optional] [default to undefined]
version number The version of the expiring user target to update. Optional and only used if <code>kind</code> is <code>updateExpireUserTargetDate</code>. If included, update will fail if version doesn&#39;t match current version of the expiring user target. [optional] [default to undefined]

Example

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

const instance: InstructionUserRequest = {
    kind,
    flagKey,
    variationId,
    value,
    version,
};

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