Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1008 Bytes

File metadata and controls

31 lines (22 loc) · 1008 Bytes

GotifySettings

Properties

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

Example

from seerr.models.gotify_settings import GotifySettings

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

# convert the object into a dict
gotify_settings_dict = gotify_settings_instance.to_dict()
# create an instance of GotifySettings from a dict
gotify_settings_from_dict = GotifySettings.from_dict(gotify_settings_dict)

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