You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Email address of the mailbox this delivery is attached to
[optional]
webhook_url
str
URL that received the webhook POST request
[optional]
is_successful
bool
Whether the delivery was successful
[optional]
duration
int
Webhook request duration in milliseconds
[optional]
retry_count
int
Number of delivery attempts made
[optional]
max_retry_count
int
Maximum number of delivery attempts allowed
[optional]
Example
fromhostinger_api.models.mail_v1_webhooks_webhook_delivery_log_resourceimportMailV1WebhooksWebhookDeliveryLogResource# TODO update the JSON string belowjson="{}"# create an instance of MailV1WebhooksWebhookDeliveryLogResource from a JSON stringmail_v1_webhooks_webhook_delivery_log_resource_instance=MailV1WebhooksWebhookDeliveryLogResource.from_json(json)
# print the JSON string representation of the objectprint(MailV1WebhooksWebhookDeliveryLogResource.to_json())
# convert the object into a dictmail_v1_webhooks_webhook_delivery_log_resource_dict=mail_v1_webhooks_webhook_delivery_log_resource_instance.to_dict()
# create an instance of MailV1WebhooksWebhookDeliveryLogResource from a dictmail_v1_webhooks_webhook_delivery_log_resource_from_dict=MailV1WebhooksWebhookDeliveryLogResource.from_dict(mail_v1_webhooks_webhook_delivery_log_resource_dict)