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

:redirect_to_url :: ExOAPI.Stripe.Schemas.SetupIntentNextActionRedirectToUrl

:type :: :string

Type of the next action to perform, one of redirect_to_url, use_stripe_sdk, alipay_handle_redirect, oxxo_display_details, or verify_with_microdeposits.

:use_stripe_sdk :: :map

When confirming a SetupIntent with Stripe.js, Stripe.js depends on the contents of this dictionary to invoke authentication flows. The shape of the contents is subject to change and is only intended to be used by Stripe.js.

:verify_with_microdeposits :: ExOAPI.Stripe.Schemas.SetupIntentNextActionVerifyWithMicrodeposits

Link to this section Summary

Link to this section Types

@type params() :: map()
@type t() :: %ExOAPI.Stripe.Schemas.SetupIntentNextAction{
  redirect_to_url:
    ExOAPI.Stripe.Schemas.SetupIntentNextActionRedirectToUrl.t() | nil,
  type: String.t() | nil,
  use_stripe_sdk: map() | nil,
  verify_with_microdeposits:
    ExOAPI.Stripe.Schemas.SetupIntentNextActionVerifyWithMicrodeposits.t() | nil
}

Link to this section Functions

Link to this function

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

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