Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 887 Bytes

File metadata and controls

31 lines (22 loc) · 887 Bytes

Views

Properties

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

Example

from launchdarkly_api.models.views import Views

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

# convert the object into a dict
views_dict = views_instance.to_dict()
# create an instance of Views from a dict
views_from_dict = Views.from_dict(views_dict)

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