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

:attempts_remaining :: :integer

The number of attempts remaining to authenticate the source object with a verification code.

:status :: :string

The status of the code verification, either pending (awaiting verification, attempts_remaining should be greater than 0), succeeded (successful verification) or failed (failed verification, cannot be verified anymore as attempts_remaining should be 0).

Link to this section Summary

Link to this section Types

@type params() :: map()
@type t() :: %ExOAPI.Stripe.Schemas.SourceCodeVerificationFlow{
  attempts_remaining: integer() | nil,
  status: 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()