View Source ExOAPI.Stripe.Schemas.GelatoIdNumberReport (exoapi_stripe v0.1.4)
description: Result from an id_number check
:dob :: ExOAPI.Stripe.Schemas.GelatoDataIdNumberReportDate
Date of birth.
:error :: ExOAPI.Stripe.Schemas.GelatoIdNumberReportError
Details on the verification error. Present when status is unverified
.
:first_name :: :string
First name.
:id_number :: :string
ID number.
:id_number_type :: :string
Type of ID number.
:last_name :: :string
Last name.
:status :: :string
Status of this id_number
check.
Link to this section Summary
Link to this section Types
@type params() :: map()
@type t() :: %ExOAPI.Stripe.Schemas.GelatoIdNumberReport{ dob: ExOAPI.EctoTypes.AnyOf.t() | nil, error: 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, status: (:verified | :unverified) | nil }
Link to this section Functions
@spec changeset(t(), params()) :: Ecto.Changeset.t()