| Name | Type | Description | Notes |
|---|---|---|---|
| links | ViewsPaginatedLinks | [optional] | |
| items | List[ViewLinkedResource] | ||
| total_count | int |
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)