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

Nested parameters.

# `t`

```elixir
@type t() :: %Stripe.Params.Checkout.SessionCreateParams.BrandingSettings.Logo{
  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 logo. Purpose must be `business_logo`. Required if `type` is `file` and disallowed otherwise.
* `type` - The type of image for the logo. 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*
