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

description: Tax codes classify goods and services for tax purposes.

:description :: :string

A detailed description of which types of products the tax code represents.

:id :: :string

Unique identifier for the object.

:name :: :string

A short name for the tax code.

:object :: :string

String representing the object's type. Objects of the same type share the same value.

Link to this section Summary

Link to this section Types

@type params() :: map()
@type t() :: %ExOAPI.Stripe.Schemas.TaxCode{
  description: String.t() | nil,
  id: String.t() | nil,
  name: String.t() | nil,
  object: :tax_code | nil
}

Link to this section Functions

Link to this function

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

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