Skip to content

Latest commit

 

History

History
24 lines (18 loc) · 1.01 KB

UserFlagSetting.md

File metadata and controls

24 lines (18 loc) · 1.01 KB

LaunchDarklyApi::UserFlagSetting

Properties

Name Type Description Notes
_links Hash<String, Link> The location and content type of related resources.
_value Object The value of the flag variation that the user receives. If there is no defined default rule, this is null.
setting Object Whether the user is explicitly targeted to receive a particular variation. The setting is false if you have turned off a feature flag for a user. It is null if you haven't assigned that user to a specific variation.
reason EvaluationReason [optional]

Example

require 'launchdarkly_api'

instance = LaunchDarklyApi::UserFlagSetting.new(
  _links: {&quot;sort.order&quot;:{&quot;href&quot;:&quot;/api/v2/users/lacuna/production/Abbie_Braun/flags/sort.order&quot;,&quot;type&quot;:&quot;application/json&quot;}},
  _value: true,
  setting: null,
  reason: null
)