Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 863 Bytes

File metadata and controls

29 lines (20 loc) · 863 Bytes

ApiTeamInfo

Properties

Name Type Description Notes
description str [optional]

Example

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)

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