| Name | Type | Description | Notes |
|---|---|---|---|
| description | str | [optional] | |
| id | str | ||
| members | List[ApiMember] | ||
| name | str | ||
| permission_set | ApiPermissionSet |
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)