Name |
Type |
Description |
Notes |
added_at |
datetime |
|
[optional] |
campaign |
int |
|
[optional] |
id |
int |
|
[optional] |
name |
str |
|
[optional] |
organization |
int |
Organization foreign key. |
[optional] |
request_headers |
str |
|
[optional] |
type |
str |
For campaign type webhooks, `campaign` key is required. |
[optional] |
updated_at |
datetime |
|
[optional] |
url |
str |
|
[optional] |
from callchimp.models.webhook_response import WebhookResponse
# TODO update the JSON string below
json = "{}"
# create an instance of WebhookResponse from a JSON string
webhook_response_instance = WebhookResponse.from_json(json)
# print the JSON string representation of the object
print(WebhookResponse.to_json())
# convert the object into a dict
webhook_response_dict = webhook_response_instance.to_dict()
# create an instance of WebhookResponse from a dict
webhook_response_from_dict = WebhookResponse.from_dict(webhook_response_dict)
[Back to Model list] [Back to API list] [Back to README]