Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.21 KB

File metadata and controls

30 lines (21 loc) · 1.21 KB

ExpandedLinkedResourcesItems

Properties

Name Type Description Notes
flags ExpandedLinkedResourcesFlags
segments ExpandedLinkedResourcesSegments [optional]

Example

from launchdarkly_api.models.expanded_linked_resources_items import ExpandedLinkedResourcesItems

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

# convert the object into a dict
expanded_linked_resources_items_dict = expanded_linked_resources_items_instance.to_dict()
# create an instance of ExpandedLinkedResourcesItems from a dict
expanded_linked_resources_items_from_dict = ExpandedLinkedResourcesItems.from_dict(expanded_linked_resources_items_dict)

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