# `PolarExpress.Events.CheckoutExpired`
[🔗](https://github.com/jeffhuen/polar_express/blob/main/lib/polar_express/events/checkout_expired.ex#L2)

Webhook event for `checkout.expired`.

Sent when a checkout expires.

This event fires when a checkout reaches its expiration time without being completed.
Developers can use this to send reminder emails or track checkout abandonment.

**Discord & Slack support:** Basic

The `data` field contains a `PolarExpress.Schemas.Checkout` struct.

# `t`

```elixir
@type t() :: %PolarExpress.Events.CheckoutExpired{
  data: PolarExpress.Schemas.Checkout.t(),
  timestamp: String.t(),
  type: String.t()
}
```

* `type` - Always `"checkout.expired"`.
* `data` - The event payload. See `PolarExpress.Schemas.Checkout`.
* `timestamp` - ISO 8601 timestamp of when the event occurred.

# `event_type`

```elixir
@spec event_type() :: String.t()
```

Returns the event type string.

---

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