Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 980 Bytes

File metadata and controls

29 lines (21 loc) · 980 Bytes

SetManagerRequest

The request for setting a group manager.

Properties

Name Type Description Notes
user_id str The user ID.

Example

from docspace_api_sdk.models.set_manager_request import SetManagerRequest

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

# convert the object into a dict
set_manager_request_dict = set_manager_request_instance.to_dict()
# create an instance of SetManagerRequest from a dict
set_manager_request_from_dict = SetManagerRequest.from_dict(set_manager_request_dict)

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