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

:address_line1_check :: :string

If a address line1 was provided, results of the check, one of pass, fail, unavailable, or unchecked.

:address_postal_code_check :: :string

If a address postal code was provided, results of the check, one of pass, fail, unavailable, or unchecked.

:cvc_check :: :string

If a CVC was provided, results of the check, one of pass, fail, unavailable, or unchecked.

Link to this section Summary

Link to this section Types

@type params() :: map()
@type t() :: %ExOAPI.Stripe.Schemas.PaymentMethodDetailsCardChecks{
  address_line1_check: String.t() | nil,
  address_postal_code_check: String.t() | nil,
  cvc_check: 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()