Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.06 KB

File metadata and controls

31 lines (22 loc) · 1.06 KB

PushoverSettingsOptions

Properties

Name Type Description Notes
access_token str [optional]
user_token str [optional]
sound str [optional]

Example

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]