Skip to content

Latest commit

 

History

History
24 lines (18 loc) · 753 Bytes

UpsertFlagDefaultsPayload.md

File metadata and controls

24 lines (18 loc) · 753 Bytes

LaunchDarklyApi::UpsertFlagDefaultsPayload

Properties

Name Type Description Notes
tags Array<String> A list of default tags for each flag
temporary Boolean Whether the flag should be temporary by default
boolean_defaults BooleanFlagDefaults
default_client_side_availability DefaultClientSideAvailability

Example

require 'launchdarkly_api'

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