@valon-technologies/gestalt
    Preparing search index...

    Interface TransactionOperationResponse

    TransactionOperationResponse is the ordered response to one operation. Non-OK error marks the transaction failed and causes rollback in phase 1.

    interface TransactionOperationResponse {
        requestId: bigint;
        error?: RpcStatus;
        result: TransactionOperationResponseResult;
    }
    Index

    Properties

    requestId: bigint
    error?: RpcStatus