Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1016 Bytes

File metadata and controls

30 lines (21 loc) · 1016 Bytes

TeamListResponse

Properties

Name Type Description Notes
page_details TeamPageDetails [optional]
results List[Teams] [optional]

Example

from boldsign.models.team_list_response import TeamListResponse

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

# convert the object into a dict
team_list_response_dict = team_list_response_instance.to_dict()
# create an instance of TeamListResponse from a dict
team_list_response_from_dict = TeamListResponse.from_dict(team_list_response_dict)

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