Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.06 KB

File metadata and controls

31 lines (22 loc) · 1.06 KB

WebhookSettingsOptions

Properties

Name Type Description Notes
webhook_url str [optional]
auth_header str [optional]
json_payload str [optional]

Example

from overseerr.models.webhook_settings_options import WebhookSettingsOptions

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

# convert the object into a dict
webhook_settings_options_dict = webhook_settings_options_instance.to_dict()
# create an instance of WebhookSettingsOptions from a dict
webhook_settings_options_from_dict = WebhookSettingsOptions.from_dict(webhook_settings_options_dict)

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