Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 922 Bytes

File metadata and controls

29 lines (20 loc) · 922 Bytes

CreateTeamRequest

Properties

Name Type Description Notes
team_name str

Example

from boldsign.models.create_team_request import CreateTeamRequest

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

# convert the object into a dict
create_team_request_dict = create_team_request_instance.to_dict()
# create an instance of CreateTeamRequest from a dict
create_team_request_from_dict = CreateTeamRequest.from_dict(create_team_request_dict)

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