Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.03 KB

File metadata and controls

33 lines (24 loc) · 1.03 KB

TeamResponse

Properties

Name Type Description Notes
team_id str [optional]
team_name str [optional]
users List[TeamUsers] [optional]
created_date int [optional]
modified_date int [optional]

Example

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)

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