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

:address :: ExOAPI.Stripe.Schemas.Address

The user's verified address.

:dob :: ExOAPI.Stripe.Schemas.GelatoDataVerifiedOutputsDate

The user’s verified date of birth.

:first_name :: :string

The user's verified first name.

:id_number :: :string

The user's verified id number.

:id_number_type :: :string

The user's verified id number type.

:last_name :: :string

The user's verified last name.

Link to this section Summary

Link to this section Types

@type params() :: map()
@type t() :: %ExOAPI.Stripe.Schemas.GelatoVerifiedOutputs{
  address: ExOAPI.EctoTypes.AnyOf.t() | nil,
  dob: ExOAPI.EctoTypes.AnyOf.t() | nil,
  first_name: String.t() | nil,
  id_number: String.t() | nil,
  id_number_type: (:us_ssn | :sg_nric | :br_cpf) | nil,
  last_name: 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()