| Name |
Type |
Description |
Notes |
| team_id |
str |
|
|
| team_name |
str |
|
|
from boldsign.models.team_update_request import TeamUpdateRequest
# TODO update the JSON string below
json = "{}"
# create an instance of TeamUpdateRequest from a JSON string
team_update_request_instance = TeamUpdateRequest.from_json(json)
# print the JSON string representation of the object
print(TeamUpdateRequest.to_json())
# convert the object into a dict
team_update_request_dict = team_update_request_instance.to_dict()
# create an instance of TeamUpdateRequest from a dict
team_update_request_from_dict = TeamUpdateRequest.from_dict(team_update_request_dict)
[Back to Model list] [Back to API list] [Back to README]