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

:address_line1_check :: :string

Whether the cardholder provided an address first line and if it matched the cardholder’s billing.address.line1.

:address_postal_code_check :: :string

Whether the cardholder provided a postal code and if it matched the cardholder’s billing.address.postal_code.

:cvc_check :: :string

Whether the cardholder provided a CVC and if it matched Stripe’s record.

:expiry_check :: :string

Whether the cardholder provided an expiry date and if it matched Stripe’s record.

Link to this section Summary

Link to this section Types

@type params() :: map()
@type t() :: %ExOAPI.Stripe.Schemas.IssuingAuthorizationVerificationData{
  address_line1_check: (:not_provided | :mismatch | :match) | nil,
  address_postal_code_check: (:not_provided | :mismatch | :match) | nil,
  cvc_check: (:not_provided | :mismatch | :match) | nil,
  expiry_check: (:not_provided | :mismatch | :match) | nil
}

Link to this section Functions

Link to this function

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

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