Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 987 Bytes

File metadata and controls

31 lines (22 loc) · 987 Bytes

ApiCreateRole

Properties

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

Example

from instana_client.models.api_create_role import ApiCreateRole

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

# convert the object into a dict
api_create_role_dict = api_create_role_instance.to_dict()
# create an instance of ApiCreateRole from a dict
api_create_role_from_dict = ApiCreateRole.from_dict(api_create_role_dict)

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