Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.02 KB

File metadata and controls

30 lines (21 loc) · 1.02 KB

FeatureFlagStatuses

Properties

Name Type Description Notes
links Dict[str, Link]
items List[FlagStatusRep] [optional]

Example

from launchdarkly_api.models.feature_flag_statuses import FeatureFlagStatuses

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

# convert the object into a dict
feature_flag_statuses_dict = feature_flag_statuses_instance.to_dict()
# create an instance of FeatureFlagStatuses from a dict
feature_flag_statuses_from_dict = FeatureFlagStatuses.from_dict(feature_flag_statuses_dict)

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