Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 993 Bytes

File metadata and controls

33 lines (24 loc) · 993 Bytes

ApiGroup

Properties

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

Example

from instana_client.models.api_group import ApiGroup

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

# convert the object into a dict
api_group_dict = api_group_instance.to_dict()
# create an instance of ApiGroup from a dict
api_group_from_dict = ApiGroup.from_dict(api_group_dict)

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