Inttegro TypeScript SDK - v8.2.0
    Preparing search index...

    Interface PaymentNextAction

    interface PaymentNextAction {
        confirmPayment?: {
            expiresAt: string;
            request?: {
                id: string;
                recipient: string;
                senderId: string;
                sentVia: PaymentConfirmationChannel;
                tokenSize: number;
            };
            scheme?: string;
        };
        execute?: Record<string, unknown>;
        redirect?: { url: string };
        type: PaymentNextActionType;
    }
    Index
    confirmPayment?: {
        expiresAt: string;
        request?: {
            id: string;
            recipient: string;
            senderId: string;
            sentVia: PaymentConfirmationChannel;
            tokenSize: number;
        };
        scheme?: string;
    }
    execute?: Record<string, unknown>
    redirect?: { url: string }