Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.01 KB

File metadata and controls

31 lines (22 loc) · 1.01 KB

PushoverSettings

Properties

Name Type Description Notes
enabled bool [optional]
types float [optional]
options PushoverSettingsOptions [optional]

Example

from seerr.models.pushover_settings import PushoverSettings

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

# convert the object into a dict
pushover_settings_dict = pushover_settings_instance.to_dict()
# create an instance of PushoverSettings from a dict
pushover_settings_from_dict = PushoverSettings.from_dict(pushover_settings_dict)

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