Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.13 KB

File metadata and controls

30 lines (21 loc) · 1.13 KB

ExpandedDirectlyLinkedFlags

Properties

Name Type Description Notes
items List[ExpandedDirectlyLinkedFlag]
total_count int

Example

from launchdarkly_api.models.expanded_directly_linked_flags import ExpandedDirectlyLinkedFlags

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

# convert the object into a dict
expanded_directly_linked_flags_dict = expanded_directly_linked_flags_instance.to_dict()
# create an instance of ExpandedDirectlyLinkedFlags from a dict
expanded_directly_linked_flags_from_dict = ExpandedDirectlyLinkedFlags.from_dict(expanded_directly_linked_flags_dict)

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