Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 935 Bytes

File metadata and controls

32 lines (24 loc) · 935 Bytes

PageUser

Properties

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

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_form_dict = page_user.from_dict(page_user_dict)

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