Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 995 Bytes

PageLanguage.md

File metadata and controls

32 lines (24 loc) · 995 Bytes

PageLanguage

Properties

Name Type Description Notes
items List[Language]
total int
page int
size int
pages int [optional]

Example

from compute_api_client.models.page_language import PageLanguage

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

# convert the object into a dict
page_language_dict = page_language_instance.to_dict()
# create an instance of PageLanguage from a dict
page_language_form_dict = page_language.from_dict(page_language_dict)

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