Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1011 Bytes

File metadata and controls

31 lines (22 loc) · 1011 Bytes

ApiCreateGroup

Properties

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

Example

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)

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