Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.07 KB

File metadata and controls

31 lines (22 loc) · 1.07 KB

ExpandedLinkedFlags

Details on linked flags for a view - requires passing the 'allFlags' expand field

Properties

Name Type Description Notes
items List[ExpandedFlag]
total_count int

Example

from launchdarkly_api.models.expanded_linked_flags import ExpandedLinkedFlags

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

# convert the object into a dict
expanded_linked_flags_dict = expanded_linked_flags_instance.to_dict()
# create an instance of ExpandedLinkedFlags from a dict
expanded_linked_flags_from_dict = ExpandedLinkedFlags.from_dict(expanded_linked_flags_dict)

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