Skip to content

Latest commit

 

History

History
24 lines (18 loc) · 933 Bytes

FeatureFlags.md

File metadata and controls

24 lines (18 loc) · 933 Bytes

LaunchDarklyApi::FeatureFlags

Properties

Name Type Description Notes
items Array<FeatureFlag> An array of feature flags
_links Hash<String, Link> The location and content type of related resources
total_count Integer The total number of flags [optional]
total_count_with_differences Integer The number of flags that have differences between environments. Only shown when query parameter <code>compare</code> is <code>true</code>. [optional]

Example

require 'launchdarkly_api'

instance = LaunchDarklyApi::FeatureFlags.new(
  items: null,
  _links: {&quot;self&quot;:{&quot;href&quot;:&quot;/api/v2/flags/default&quot;,&quot;type&quot;:&quot;application/json&quot;}},
  total_count: 1,
  total_count_with_differences: 0
)