Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 994 Bytes

File metadata and controls

30 lines (21 loc) · 994 Bytes

ListTeamsOutputBody

Properties

Name Type Description Notes
teams List[Team]
total int

Example

from revengai.models.list_teams_output_body import ListTeamsOutputBody

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

# convert the object into a dict
list_teams_output_body_dict = list_teams_output_body_instance.to_dict()
# create an instance of ListTeamsOutputBody from a dict
list_teams_output_body_from_dict = ListTeamsOutputBody.from_dict(list_teams_output_body_dict)

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