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

:dob :: ExOAPI.Stripe.Schemas.IssuingCardholderIndividualDob

The date of birth of this cardholder.

:first_name :: :string

The first name of this cardholder.

:last_name :: :string

The last name of this cardholder.

:verification :: ExOAPI.Stripe.Schemas.IssuingCardholderVerification

Government-issued ID document for this cardholder.

Link to this section Summary

Link to this section Types

@type params() :: map()
@type t() :: %ExOAPI.Stripe.Schemas.IssuingCardholderIndividual{
  dob: ExOAPI.EctoTypes.AnyOf.t() | nil,
  first_name: String.t() | nil,
  last_name: String.t() | nil,
  verification: ExOAPI.EctoTypes.AnyOf.t() | nil
}

Link to this section Functions

Link to this function

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

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