| Name |
Type |
Description |
Notes |
| access_token |
str |
|
[optional] |
| user_token |
str |
|
[optional] |
| sound |
str |
|
[optional] |
from seerr.models.pushover_settings_options import PushoverSettingsOptions
# TODO update the JSON string below
json = "{}"
# create an instance of PushoverSettingsOptions from a JSON string
pushover_settings_options_instance = PushoverSettingsOptions.from_json(json)
# print the JSON string representation of the object
print(PushoverSettingsOptions.to_json())
# convert the object into a dict
pushover_settings_options_dict = pushover_settings_options_instance.to_dict()
# create an instance of PushoverSettingsOptions from a dict
pushover_settings_options_from_dict = PushoverSettingsOptions.from_dict(pushover_settings_options_dict)
[Back to Model list] [Back to API list] [Back to README]