# `MPP.Plug.Config`
[🔗](https://github.com/ZenHive/mpp/blob/v0.10.0/lib/mpp/plug.ex#L101)

Validated configuration for `MPP.Plug`.

Built once at init time from plug opts. Holds shared endpoint settings
and a list of `MethodEntry` structs — one per accepted payment method.

# `t`

```elixir
@type t() :: %MPP.Plug.Config{
  digest: String.t() | nil,
  expires_in: pos_integer(),
  method_entries: [MPP.Plug.MethodEntry.t()],
  opaque: String.t() | nil,
  realm: String.t(),
  secret_key: String.t(),
  store: module() | {module(), keyword()} | nil
}
```

---

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