# `Stripe.Resources.Checkout.Session.BrandingSettings.Logo`
[🔗](https://github.com/jeffhuen/tiger_stripe/blob/main/lib/stripe/resources/checkout/session.ex#L423)

Nested struct within the parent resource.

# `t`

```elixir
@type t() :: %Stripe.Resources.Checkout.Session.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. Max length: 5000.
* `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. Present when `type` is `url`. Max length: 5000.

---

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