Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.04 KB

File metadata and controls

31 lines (22 loc) · 1.04 KB

PushbulletSettings

Properties

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

Example

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)

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