PayFanout API reference
    Preparing search index...

    Interface PayResult

    interface PayResult {
        error?: UnifiedError;
        info?: PaymentInfo;
        status:
            | "requires_payment_method"
            | "requires_confirmation"
            | "requires_action"
            | "requires_capture"
            | "processing"
            | "succeeded"
            | "canceled"
            | "failed";
    }
    Index
    error?: UnifiedError

    Present when the payment finished via server completion (tokenize-first PSPs).

    status:
        | "requires_payment_method"
        | "requires_confirmation"
        | "requires_action"
        | "requires_capture"
        | "processing"
        | "succeeded"
        | "canceled"
        | "failed"