Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1022 Bytes

File metadata and controls

33 lines (24 loc) · 1022 Bytes

ApiTeam

Properties

Name Type Description Notes
id str [optional]
info ApiTeamInfo [optional]
members List[ApiTeamMember] [optional]
scope ApiTeamScope [optional]
tag str

Example

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)

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