Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.08 KB

File metadata and controls

31 lines (22 loc) · 1.08 KB

ViewLinkedResources

Properties

Name Type Description Notes
links ViewsPaginatedLinks [optional]
items List[ViewLinkedResource]
total_count int

Example

from launchdarkly_api.models.view_linked_resources import ViewLinkedResources

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

# convert the object into a dict
view_linked_resources_dict = view_linked_resources_instance.to_dict()
# create an instance of ViewLinkedResources from a dict
view_linked_resources_from_dict = ViewLinkedResources.from_dict(view_linked_resources_dict)

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