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

:country :: :string

The customer's country as identified by Stripe Tax.

:source :: ExOAPI.Stripe.Schemas.Source

The data source used to infer the customer's location.

:state :: :string

The customer's state, county, province, or region as identified by Stripe Tax.

Link to this section Summary

Link to this section Types

@type params() :: map()
@type t() :: %ExOAPI.Stripe.Schemas.CustomerTaxLocation{
  country: String.t() | nil,
  source:
    (:shipping_destination | :payment_method | :ip_address | :billing_address)
    | 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()