# `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: DateTime.t() | nil,
  http_code: integer() | nil,
  id: String.t() | nil,
  modified_at: DateTime.t() | nil,
  response: String.t() | nil,
  succeeded: boolean() | nil,
  webhook_event: PolarExpress.Schemas.WebhookEvent.t() | nil
}
```

* `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*
