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