| Name |
Type |
Description |
Notes |
| team_name |
str |
|
|
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]