Skip to content

Latest commit

 

History

History
28 lines (22 loc) · 977 Bytes

FlagDefaultsRep.md

File metadata and controls

28 lines (22 loc) · 977 Bytes

LaunchDarklyApi::FlagDefaultsRep

Properties

Name Type Description Notes
_links Hash<String, Link> The location and content type of related resources [optional]
key String A unique key for the flag default [optional]
tags Array<String> A list of default tags for each flag [optional]
temporary Boolean Whether the flag should be temporary by default [optional]
default_client_side_availability ClientSideAvailability [optional]
boolean_defaults BooleanDefaults [optional]

Example

require 'launchdarkly_api'

instance = LaunchDarklyApi::FlagDefaultsRep.new(
  _links: null,
  key: null,
  tags: [&quot;tag-1&quot;,&quot;tag-2&quot;],
  temporary: true,
  default_client_side_availability: null,
  boolean_defaults: null
)