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

OAuth2ClientConfiguration

# `t`

```elixir
@type t() :: %PolarExpress.Schemas.OAuth2ClientConfiguration{
  client_name: String.t() | nil,
  client_uri: String.t() | nil,
  default_sub_type: PolarExpress.Schemas.SubType.t() | nil,
  grant_types: [String.t()] | nil,
  logo_uri: String.t() | nil,
  policy_uri: String.t() | nil,
  redirect_uris: [String.t()] | nil,
  response_types: [String.t()] | nil,
  scope: String.t() | nil,
  token_endpoint_auth_method: String.t() | nil,
  tos_uri: String.t() | nil
}
```

* `client_name`
* `client_uri` - Nullable.
* `default_sub_type`
* `grant_types`
* `logo_uri` - Nullable.
* `policy_uri` - Nullable.
* `redirect_uris`
* `response_types`
* `scope`
* `token_endpoint_auth_method` - Possible values: `client_secret_basic`, `client_secret_post`, `none`.
* `tos_uri` - Nullable.

# `schema_name`

---

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