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

Webhook event for `benefit_grant.cycled`.

Sent when a benefit grant is cycled,
meaning the related subscription has been renewed for another period.

**Discord & Slack support:** Basic

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

# `t`

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

* `type` - Always `"benefit_grant.cycled"`.
* `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*
