| Name | Type | Description | Notes |
|---|---|---|---|
| team_id | str | [optional] |
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)