| Name |
Type |
Description |
Notes |
| title |
str |
|
[optional] |
| type |
float |
|
[optional] |
| data |
str |
|
[optional] |
from overseerr.models.update_discover_request import UpdateDiscoverRequest
# TODO update the JSON string below
json = "{}"
# create an instance of UpdateDiscoverRequest from a JSON string
update_discover_request_instance = UpdateDiscoverRequest.from_json(json)
# print the JSON string representation of the object
print(UpdateDiscoverRequest.to_json())
# convert the object into a dict
update_discover_request_dict = update_discover_request_instance.to_dict()
# create an instance of UpdateDiscoverRequest from a dict
update_discover_request_from_dict = UpdateDiscoverRequest.from_dict(update_discover_request_dict)
[Back to Model list] [Back to API list] [Back to README]