| Name | Type | Description | Notes |
|---|---|---|---|
| description | str | [optional] |
from instana_client.models.api_team_info import ApiTeamInfo
# TODO update the JSON string below
json = "{}"
# create an instance of ApiTeamInfo from a JSON string
api_team_info_instance = ApiTeamInfo.from_json(json)
# print the JSON string representation of the object
print(ApiTeamInfo.to_json())
# convert the object into a dict
api_team_info_dict = api_team_info_instance.to_dict()
# create an instance of ApiTeamInfo from a dict
api_team_info_from_dict = ApiTeamInfo.from_dict(api_team_info_dict)