Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.1 KB

File metadata and controls

31 lines (22 loc) · 1.1 KB

ExpandedDirectlyLinkedFlag

Properties

Name Type Description Notes
key str
name str
links ViewsSelfLink

Example

from launchdarkly_api.models.expanded_directly_linked_flag import ExpandedDirectlyLinkedFlag

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

# convert the object into a dict
expanded_directly_linked_flag_dict = expanded_directly_linked_flag_instance.to_dict()
# create an instance of ExpandedDirectlyLinkedFlag from a dict
expanded_directly_linked_flag_from_dict = ExpandedDirectlyLinkedFlag.from_dict(expanded_directly_linked_flag_dict)

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