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

WebhookEndpointUpdate

Schema to update a webhook endpoint.

# `t`

```elixir
@type t() :: %PolarExpress.Schemas.WebhookEndpointUpdate{
  enabled: boolean() | nil,
  events: [PolarExpress.Schemas.WebhookEventType.t()] | nil,
  format: PolarExpress.Schemas.WebhookFormat.t() | nil,
  secret: String.t() | nil,
  url: String.t() | nil
}
```

* `enabled` - Whether the webhook endpoint is enabled. Nullable.
* `events` - Nullable.
* `format` - Nullable.
* `secret` - Nullable. **Deprecated.**
* `url` - Nullable.

# `schema_name`

---

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