# `Stripe.Params.Checkout.SessionCreateParams.BrandingSettings.Icon`
[🔗](https://github.com/jeffhuen/tiger_stripe/blob/main/lib/stripe/params/checkout/session_create_params.ex#L333)

Nested parameters.

# `t`

```elixir
@type t() :: %Stripe.Params.Checkout.SessionCreateParams.BrandingSettings.Icon{
  file: String.t() | nil,
  type: String.t() | nil,
  url: String.t() | nil
}
```

* `file` - The ID of a [File upload](https://stripe.com/docs/api/files) representing the icon. Purpose must be `business_icon`. Required if `type` is `file` and disallowed otherwise.
* `type` - The type of image for the icon. Must be one of `file` or `url`. Possible values: `file`, `url`.
* `url` - The URL of the image. Required if `type` is `url` and disallowed otherwise.

---

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