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

Webhook event for `benefit_grant.updated`.

Sent when a benefit grant is updated.

**Discord & Slack support:** Basic

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

# `t`

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

* `type` - Always `"benefit_grant.updated"`.
* `data` - The event payload. See `PolarExpress.Schemas.BenefitGrantWebhook`.
* `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*
