# `PolarExpress.Schemas.WebhookDelivery`
[🔗](https://github.com/jeffhuen/polar_express/blob/main/lib/polar_express/schemas/webhook_delivery.ex#L2)

WebhookDelivery

A webhook delivery for a webhook event.

# `t`

```elixir
@type t() :: %PolarExpress.Schemas.WebhookDelivery{
  created_at: term(),
  http_code: term(),
  id: term(),
  modified_at: term(),
  response: term(),
  succeeded: term(),
  webhook_event: term()
}
```

* `created_at` - Creation timestamp of the object. Format: date-time.
* `http_code` - The HTTP code returned by the URL. `null` if the endpoint was unreachable. Nullable.
* `id` - The ID of the object. Format: uuid4.
* `modified_at` - Last modification timestamp of the object. Nullable.
* `response` - The response body returned by the URL, or the error message if the endpoint was unreachable. Nullable.
* `succeeded` - Whether the delivery was successful.
* `webhook_event` - The webhook event sent by this delivery.

# `schema_name`

---

*Consult [api-reference.md](api-reference.md) for complete listing*
