Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 947 Bytes

File metadata and controls

33 lines (24 loc) · 947 Bytes

ApiRole

Properties

Name Type Description Notes
description str [optional]
id str
members List[ApiMember]
name str
permissions List[str]

Example

from instana_client.models.api_role import ApiRole

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

# convert the object into a dict
api_role_dict = api_role_instance.to_dict()
# create an instance of ApiRole from a dict
api_role_from_dict = ApiRole.from_dict(api_role_dict)

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