| Name | Type | Description | Notes |
|---|---|---|---|
| enabled | bool | [optional] | |
| types | float | [optional] | |
| options | PushoverSettingsOptions | [optional] |
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)