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

:category :: :string

A categorization of the seller's type of business. See our merchant categories guide for a list of possible values.

:category_code :: :string

The merchant category code for the seller’s business

:city :: :string

City where the seller is located

:country :: :string

Country where the seller is located

:name :: :string

Name of the seller

:network_id :: :string

Identifier assigned to the seller by the card brand

:postal_code :: :string

Postal code where the seller is located

:state :: :string

State where the seller is located

Link to this section Summary

Link to this section Types

@type params() :: map()
@type t() :: %ExOAPI.Stripe.Schemas.IssuingAuthorizationMerchantData{
  category: String.t() | nil,
  category_code: String.t() | nil,
  city: String.t() | nil,
  country: String.t() | nil,
  name: String.t() | nil,
  network_id: String.t() | nil,
  postal_code: String.t() | nil,
  state: 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()