Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 925 Bytes

File metadata and controls

33 lines (24 loc) · 925 Bytes

PageUser

Properties

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

Example

from compute_api_client.models.page_user import PageUser

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

# convert the object into a dict
page_user_dict = page_user_instance.to_dict()
# create an instance of PageUser from a dict
page_user_from_dict = PageUser.from_dict(page_user_dict)

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