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

:city :: :string

City/Ward.

:country :: :string

Two-letter country code (ISO 3166-1 alpha-2).

:line1 :: :string

Block/Building number.

:line2 :: :string

Building details.

:postal_code :: :string

ZIP or postal code.

:state :: :string

Prefecture.

:town :: :string

Town/cho-me.

Link to this section Summary

Link to this section Types

@type params() :: map()
@type t() :: %ExOAPI.Stripe.Schemas.LegalEntityJapanAddress{
  city: String.t() | nil,
  country: String.t() | nil,
  line1: String.t() | nil,
  line2: String.t() | nil,
  postal_code: String.t() | nil,
  state: String.t() | nil,
  town: 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()