View Source ExOAPI.Stripe.Schemas.AccountBrandingSettings (exoapi_stripe v0.1.4)

:icon :: ExOAPI.Stripe.Schemas.File | :string

(ID of a file upload) An icon for the account. Must be square and at least 128px x 128px.

:logo :: ExOAPI.Stripe.Schemas.File | :string

(ID of a file upload) A logo for the account that will be used in Checkout instead of the icon and without the account's name next to it if provided. Must be at least 128px x 128px.

:primary_color :: :string

A CSS hex color value representing the primary branding color for this account

:secondary_color :: :string

A CSS hex color value representing the secondary branding color for this account

Link to this section Summary

Link to this section Types

@type params() :: map()
@type t() :: %ExOAPI.Stripe.Schemas.AccountBrandingSettings{
  icon: ExOAPI.EctoTypes.AnyOf.t() | nil,
  logo: ExOAPI.EctoTypes.AnyOf.t() | nil,
  primary_color: String.t() | nil,
  secondary_color: String.t() | nil
}

Link to this section Functions

Link to this function

changeset(struct \\ %__MODULE__{}, params)

View Source
@spec changeset(t(), params()) :: Ecto.Changeset.t()