PayFanout API reference
    Preparing search index...

    Interface WorldlinePaymentLike

    Structural subset of a Worldline payment object (GET /payments/{id} and create responses).

    interface WorldlinePaymentLike {
        id: string;
        paymentOutput?: {
            amountOfMoney?: { amount?: number; currencyCode?: string };
            cardPaymentMethodSpecificOutput?: WorldlineCardOutput;
            references?: { merchantReference?: string };
        };
        status?: string;
        statusOutput?: {
            isCancellable?: boolean;
            statusCategory?: string;
            statusCode?: number;
        };
    }
    Index
    id: string
    paymentOutput?: {
        amountOfMoney?: { amount?: number; currencyCode?: string };
        cardPaymentMethodSpecificOutput?: WorldlineCardOutput;
        references?: { merchantReference?: string };
    }
    status?: string
    statusOutput?: {
        isCancellable?: boolean;
        statusCategory?: string;
        statusCode?: number;
    }