CreateGroupRequest
Properties
| Name |
Type |
Description |
Notes |
| external_id |
str |
External unique resource id |
[optional] |
| id |
str |
Unique resource id |
[optional] |
| schemas |
List[str] |
|
[optional] |
| members |
List[CreateGroupRequestMembersInner] |
|
[optional] |
| display_name |
str |
|
|
Example
from odm_api.models.create_group_request import CreateGroupRequest
# TODO update the JSON string below
json = "{}"
# create an instance of CreateGroupRequest from a JSON string
create_group_request_instance = CreateGroupRequest.from_json(json)
# print the JSON string representation of the object
print(CreateGroupRequest.to_json())
# convert the object into a dict
create_group_request_dict = create_group_request_instance.to_dict()
# create an instance of CreateGroupRequest from a dict
create_group_request_from_dict = CreateGroupRequest.from_dict(create_group_request_dict)
[Back to Model list] [Back to API list] [Back to README]