| Name | Type | Description | Notes |
|---|---|---|---|
| members | List[ApiMember] | ||
| name | str | ||
| permission_set | ApiPermissionSet |
from instana_client.models.api_create_group import ApiCreateGroup
# TODO update the JSON string below
json = "{}"
# create an instance of ApiCreateGroup from a JSON string
api_create_group_instance = ApiCreateGroup.from_json(json)
# print the JSON string representation of the object
print(ApiCreateGroup.to_json())
# convert the object into a dict
api_create_group_dict = api_create_group_instance.to_dict()
# create an instance of ApiCreateGroup from a dict
api_create_group_from_dict = ApiCreateGroup.from_dict(api_create_group_dict)