| Name | Type | Description | Notes |
|---|---|---|---|
| teams | List[Team] | ||
| total | int |
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)