Skip to content

Latest commit

 

History

History
24 lines (17 loc) · 966 Bytes

File metadata and controls

24 lines (17 loc) · 966 Bytes

FlagInput

Properties

Name Type Description Notes
ruleId string The ID of the variation or rollout of the flag to use. Use "fallthrough" for the default targeting behavior when the flag is on. [default to undefined]
flagConfigVersion number The flag version [default to undefined]
notInExperimentVariationId string The ID of the variation to route traffic not part of the experiment analysis to. Defaults to variation ID of baseline treatment, if set. [optional] [default to undefined]

Example

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

const instance: FlagInput = {
    ruleId,
    flagConfigVersion,
    notInExperimentVariationId,
};

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