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

:mcc :: :string

The merchant category code for the account. MCCs are used to classify businesses based on the goods or services they provide.

:name :: :string

The customer-facing business name.

:product_description :: :string

Internal-only description of the product sold or service provided by the business. It's used by Stripe for risk and underwriting purposes.

:support_address :: ExOAPI.Stripe.Schemas.Address

A publicly available mailing address for sending support issues to.

:support_email :: :string

A publicly available email address for sending support issues to.

:support_phone :: :string

A publicly available phone number to call with support issues.

:support_url :: :string

A publicly available website for handling support issues.

:url :: :string

The business's publicly available website.

Link to this section Summary

Link to this section Types

@type params() :: map()
@type t() :: %ExOAPI.Stripe.Schemas.AccountBusinessProfile{
  mcc: String.t() | nil,
  name: String.t() | nil,
  product_description: String.t() | nil,
  support_address: ExOAPI.EctoTypes.AnyOf.t() | nil,
  support_email: String.t() | nil,
  support_phone: String.t() | nil,
  support_url: String.t() | nil,
  url: 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()