Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.18 KB

File metadata and controls

33 lines (24 loc) · 1.18 KB

ViewsPaginatedLinks

Properties

Name Type Description Notes
first ViewsLink [optional]
last ViewsLink [optional]
next ViewsLink [optional]
prev ViewsLink [optional]
var_self ViewsLink

Example

from launchdarkly_api.models.views_paginated_links import ViewsPaginatedLinks

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

# convert the object into a dict
views_paginated_links_dict = views_paginated_links_instance.to_dict()
# create an instance of ViewsPaginatedLinks from a dict
views_paginated_links_from_dict = ViewsPaginatedLinks.from_dict(views_paginated_links_dict)

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