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

description: Result from a selfie check

:document :: :string

ID of the File holding the image of the identity document used in this check.

:error :: ExOAPI.Stripe.Schemas.GelatoSelfieReportError

Details on the verification error. Present when status is unverified.

:selfie :: :string

ID of the File holding the image of the selfie used in this check.

:status :: :string

Status of this selfie check.

Link to this section Summary

Link to this section Types

@type params() :: map()
@type t() :: %ExOAPI.Stripe.Schemas.GelatoSelfieReport{
  document: String.t() | nil,
  error: ExOAPI.EctoTypes.AnyOf.t() | nil,
  selfie: String.t() | nil,
  status: (:verified | :unverified) | nil
}

Link to this section Functions

Link to this function

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

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