Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 938 Bytes

File metadata and controls

30 lines (21 loc) · 938 Bytes

PutUserRequest

Properties

Name Type Description Notes
ids List[int] [optional]
permissions int [optional]

Example

from overseerr.models.put_user_request import PutUserRequest

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

# convert the object into a dict
put_user_request_dict = put_user_request_instance.to_dict()
# create an instance of PutUserRequest from a dict
put_user_request_from_dict = PutUserRequest.from_dict(put_user_request_dict)

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