Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.02 KB

Links.md

File metadata and controls

33 lines (24 loc) · 1.02 KB

Links

Properties

Name Type Description Notes
var_self str Link to current resource.
first str Link to first page, if applicable.
previous str Link to previous page, if applicable. [optional]
next str Link to next page, if applicable. [optional]
last str Link to last page, if applicable.

Example

from pfruck_contabo.models.links import Links

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

# convert the object into a dict
links_dict = links_instance.to_dict()
# create an instance of Links from a dict
links_from_dict = Links.from_dict(links_dict)

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