Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.05 KB

WebhookRequest.md

File metadata and controls

33 lines (24 loc) · 1.05 KB

WebhookRequest

Properties

Name Type Description Notes
campaign int [optional]
name str
type str For campaign type webhooks, `campaign` key is required.
url str
request_headers str [optional]

Example

from callchimp.models.webhook_request import WebhookRequest

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

# convert the object into a dict
webhook_request_dict = webhook_request_instance.to_dict()
# create an instance of WebhookRequest from a dict
webhook_request_from_dict = WebhookRequest.from_dict(webhook_request_dict)

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