| Name | Type | Description | Notes |
|---|---|---|---|
| organisation_id | int | Organisation this team belongs to, if any | [optional] |
| plan | str | ||
| team_id | int | ||
| team_name | str |
from revengai.models.team import Team
# TODO update the JSON string below
json = "{}"
# create an instance of Team from a JSON string
team_instance = Team.from_json(json)
# print the JSON string representation of the object
print(Team.to_json())
# convert the object into a dict
team_dict = team_instance.to_dict()
# create an instance of Team from a dict
team_from_dict = Team.from_dict(team_dict)