PayFanout API reference
    Preparing search index...

    Interface PayZenTransactionLike

    Structural subset of the V4/Transaction object.

    interface PayZenTransactionLike {
        amount?: number;
        creationDate?: string;
        currency?: string;
        detailedErrorCode?: string | null;
        detailedStatus?: string;
        errorCode?: string | null;
        metadata?: Record<string, string> | null;
        operationType?: string;
        orderDetails?: {
            metadata?: Record<string, string> | null;
            orderId?: string | null;
        };
        paymentMethodType?: string;
        status?: string;
        transactionDetails?: {
            cardDetails?: {
                captureResponse?: {
                    captureDate?: string
                    | null;
                    refundAmount?: number | null;
                };
                effectiveBrand?: string;
                expectedCaptureDate?: string;
                expiryMonth?: number
                | null;
                expiryYear?: number | null;
                manualValidation?: string;
                pan?: string;
            };
            creationContext?: string;
            parentTransactionUuid?: string
            | null;
        };
        uuid?: string;
    }
    Index
    amount?: number
    creationDate?: string
    currency?: string
    detailedErrorCode?: string | null
    detailedStatus?: string
    errorCode?: string | null
    metadata?: Record<string, string> | null
    operationType?: string
    orderDetails?: {
        metadata?: Record<string, string> | null;
        orderId?: string | null;
    }
    paymentMethodType?: string
    status?: string
    transactionDetails?: {
        cardDetails?: {
            captureResponse?: {
                captureDate?: string | null;
                refundAmount?: number | null;
            };
            effectiveBrand?: string;
            expectedCaptureDate?: string;
            expiryMonth?: number
            | null;
            expiryYear?: number | null;
            manualValidation?: string;
            pan?: string;
        };
        creationContext?: string;
        parentTransactionUuid?: string
        | null;
    }
    uuid?: string