Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.27 KB

File metadata and controls

32 lines (23 loc) · 1.27 KB

FeatureFlags

Properties

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

Example

from launchdarkly_api.models.feature_flags import FeatureFlags

# TODO update the JSON string below
json = "{}"
# create an instance of FeatureFlags from a JSON string
feature_flags_instance = FeatureFlags.from_json(json)
# print the JSON string representation of the object
print(FeatureFlags.to_json())

# convert the object into a dict
feature_flags_dict = feature_flags_instance.to_dict()
# create an instance of FeatureFlags from a dict
feature_flags_from_dict = FeatureFlags.from_dict(feature_flags_dict)

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