Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 1.23 KB

File metadata and controls

32 lines (24 loc) · 1.23 KB

UpdateGroupRequest

The request for updating a group.

Properties

Name Type Description Notes
members_to_add List[str] The list of user IDs to add to the group. [optional]
members_to_remove List[str] The list of user IDs to remove from the group. [optional]
group_manager str The group manager ID. [optional]
group_name str The group name. [optional]

Example

from docspace_api_sdk.models.update_group_request import UpdateGroupRequest

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

# convert the object into a dict
update_group_request_dict = update_group_request_instance.to_dict()
# create an instance of UpdateGroupRequest from a dict
update_group_request_from_dict = UpdateGroupRequest.from_dict(update_group_request_dict)

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