Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 847 Bytes

File metadata and controls

29 lines (20 loc) · 847 Bytes

TeamCreated

Properties

Name Type Description Notes
team_id str [optional]

Example

from boldsign.models.team_created import TeamCreated

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

# convert the object into a dict
team_created_dict = team_created_instance.to_dict()
# create an instance of TeamCreated from a dict
team_created_from_dict = TeamCreated.from_dict(team_created_dict)

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