Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.21 KB

WebhookStandardSchema.md

File metadata and controls

35 lines (26 loc) · 1.21 KB

WebhookStandardSchema

Properties

Name Type Description Notes
id int ID of the webhook
name str Name of the webhook
mode str Mode of the webhook
uri str URL of the webhook
ds_id int DS ID of the source
origins str [optional]
secret str [optional]

Example

from openapi_client.models.webhook_standard_schema import WebhookStandardSchema

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

# convert the object into a dict
webhook_standard_schema_dict = webhook_standard_schema_instance.to_dict()
# create an instance of WebhookStandardSchema from a dict
webhook_standard_schema_from_dict = WebhookStandardSchema.from_dict(webhook_standard_schema_dict)

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