Skip to content

Latest commit

History

History
29 lines (20 loc) · 958 Bytes

File metadata and controls

29 lines (20 loc) · 958 Bytes

CreateTeamInputBody

Properties

NameTypeDescriptionNotes
namestrTeam name

Example

fromrevengai.models.create_team_input_bodyimportCreateTeamInputBody# TODO update the JSON string belowjson="{}"# create an instance of CreateTeamInputBody from a JSON stringcreate_team_input_body_instance=CreateTeamInputBody.from_json(json)
# print the JSON string representation of the objectprint(CreateTeamInputBody.to_json())
# convert the object into a dictcreate_team_input_body_dict=create_team_input_body_instance.to_dict()
# create an instance of CreateTeamInputBody from a dictcreate_team_input_body_from_dict=CreateTeamInputBody.from_dict(create_team_input_body_dict)

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