| Name | Type | Description | Notes |
|---|---|---|---|
| team_id | str | [optional] | |
| team_name | str | [optional] | |
| users | List[TeamUsers] | [optional] | |
| created_date | int | [optional] | |
| modified_date | int | [optional] |
from boldsign.models.team_response import TeamResponse
# TODO update the JSON string below
json = "{}"
# create an instance of TeamResponse from a JSON string
team_response_instance = TeamResponse.from_json(json)
# print the JSON string representation of the object
print(TeamResponse.to_json())
# convert the object into a dict
team_response_dict = team_response_instance.to_dict()
# create an instance of TeamResponse from a dict
team_response_from_dict = TeamResponse.from_dict(team_response_dict)