Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 930 Bytes

File metadata and controls

31 lines (22 loc) · 930 Bytes

ApiTeamRole

Properties

Name Type Description Notes
role_id str
role_name str [optional]
via_id_p bool [optional]

Example

from instana_client.models.api_team_role import ApiTeamRole

# TODO update the JSON string below
json = "{}"
# create an instance of ApiTeamRole from a JSON string
api_team_role_instance = ApiTeamRole.from_json(json)
# print the JSON string representation of the object
print(ApiTeamRole.to_json())

# convert the object into a dict
api_team_role_dict = api_team_role_instance.to_dict()
# create an instance of ApiTeamRole from a dict
api_team_role_from_dict = ApiTeamRole.from_dict(api_team_role_dict)

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