Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 925 Bytes

File metadata and controls

33 lines (24 loc) · 925 Bytes

PageTeam

Properties

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

Example

from compute_api_client.models.page_team import PageTeam

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

# convert the object into a dict
page_team_dict = page_team_instance.to_dict()
# create an instance of PageTeam from a dict
page_team_from_dict = PageTeam.from_dict(page_team_dict)

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