| Name | Type | Description | Notes |
|---|---|---|---|
| enabled | bool | [optional] | |
| types | float | [optional] | |
| options | PushbulletSettingsOptions | [optional] |
from seerr.models.pushbullet_settings import PushbulletSettings
# TODO update the JSON string below
json = "{}"
# create an instance of PushbulletSettings from a JSON string
pushbullet_settings_instance = PushbulletSettings.from_json(json)
# print the JSON string representation of the object
print(PushbulletSettings.to_json())
# convert the object into a dict
pushbullet_settings_dict = pushbullet_settings_instance.to_dict()
# create an instance of PushbulletSettings from a dict
pushbullet_settings_from_dict = PushbulletSettings.from_dict(pushbullet_settings_dict)