Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.24 KB

File metadata and controls

36 lines (27 loc) · 1.24 KB

UpdateRequestRequest

Properties

Name Type Description Notes
media_type str
seasons List[float] [optional]
is4k bool [optional]
server_id float [optional]
profile_id float [optional]
root_folder str [optional]
language_profile_id float [optional]
user_id float [optional]

Example

from overseerr.models.update_request_request import UpdateRequestRequest

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

# convert the object into a dict
update_request_request_dict = update_request_request_instance.to_dict()
# create an instance of UpdateRequestRequest from a dict
update_request_request_from_dict = UpdateRequestRequest.from_dict(update_request_request_dict)

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