open-nav
    Preparing search index...

    Interface TransactionOutcome

    interface TransactionOutcome {
        accepted: ProcessingResultType[];
        rejected: ProcessingResultType[];
        response?: QueryTransactionStatusResponse;
        results: ProcessingResultType[];
        transactionId: string;
        warnings: ProcessingResultType[];
    }
    Index
    accepted: ProcessingResultType[]

    Invoices NAV stored successfully.

    rejected: ProcessingResultType[]

    Invoices NAV rejected outright.

    response?: QueryTransactionStatusResponse

    The final status response, if any poll returned one.

    results: ProcessingResultType[]

    Per-invoice results, in batch index order.

    transactionId: string
    warnings: ProcessingResultType[]

    Invoices stored with warnings.

    A DONE invoice can still carry WARN business messages. They do not block the report but usually mean something is wrong with the data, so they are surfaced separately rather than folded into accepted silently.