qgw
    Preparing search index...

    Interface TransactionDeclinedIssue

    Used to provide more information about why Quantum Gateway declined a transaction. It wraps all of the error information in the serverReponse field. Since this issue only occurs when the transaction is declined, the result field will always be "DECLINED".

    interface TransactionDeclinedIssue {
        code: string;
        message: string;
        path?: (string | number)[];
        serverResponse: TransactionResponse;
    }

    Hierarchy (View Summary)

    Index

    Properties

    code: string
    message: string
    path?: (string | number)[]
    serverResponse: TransactionResponse