@sumup/sdk
    Preparing search index...

    Type Alias CheckoutAccepted

    3DS Response

    type CheckoutAccepted = {
        next_step?: {
            mechanism?: ("iframe" | "browser")[];
            method?: string;
            payload?: {
                MD?: Record<string, unknown>;
                PaReq?: Record<string, unknown>;
                TermUrl?: Record<string, unknown>;
            };
            redirect_url?: string;
            url?: string;
        };
    }
    Index

    Properties

    Properties

    next_step?: {
        mechanism?: ("iframe" | "browser")[];
        method?: string;
        payload?: {
            MD?: Record<string, unknown>;
            PaReq?: Record<string, unknown>;
            TermUrl?: Record<string, unknown>;
        };
        redirect_url?: string;
        url?: string;
    }

    Required action processing 3D Secure payments.

    Type declaration

    • Optionalmechanism?: ("iframe" | "browser")[]

      Indicates allowed mechanisms for redirecting an end user. If both values are provided to ensure a redirect takes place in either.

    • Optionalmethod?: string

      Method used to complete the redirect.

    • Optionalpayload?: {
          MD?: Record<string, unknown>;
          PaReq?: Record<string, unknown>;
          TermUrl?: Record<string, unknown>;
      }

      Contains parameters essential for form redirection. Number of object keys and their content can vary.

    • Optionalredirect_url?: string

      Refers to a url where the end user is redirected once the payment processing completes.

    • Optionalurl?: string

      Where the end user is redirected.