Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1013 Bytes

File metadata and controls

30 lines (21 loc) · 1013 Bytes

GotifySettingsOptions

Properties

Name Type Description Notes
url str [optional]
token str [optional]

Example

from seerr.models.gotify_settings_options import GotifySettingsOptions

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

# convert the object into a dict
gotify_settings_options_dict = gotify_settings_options_instance.to_dict()
# create an instance of GotifySettingsOptions from a dict
gotify_settings_options_from_dict = GotifySettingsOptions.from_dict(gotify_settings_options_dict)

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