| Name | Type | Description | Notes |
|---|---|---|---|
| id | str | [optional] | |
| info | ApiTeamInfo | [optional] | |
| members | List[ApiTeamMember] | [optional] | |
| scope | ApiTeamScope | [optional] | |
| tag | str |
from instana_client.models.api_team import ApiTeam
# TODO update the JSON string below
json = "{}"
# create an instance of ApiTeam from a JSON string
api_team_instance = ApiTeam.from_json(json)
# print the JSON string representation of the object
print(ApiTeam.to_json())
# convert the object into a dict
api_team_dict = api_team_instance.to_dict()
# create an instance of ApiTeam from a dict
api_team_from_dict = ApiTeam.from_dict(api_team_dict)