Type alias TransactionDetails

TransactionDetails: {
    id: string;
    state: "running" | "committed" | "aborted";
}

Details for a transaction.

See also TransactionStatus.

Type declaration

  • id: string

    Unique identifier of the transaction.

  • state: "running" | "committed" | "aborted"

    Status (or "state") of the transaction.

Generated using TypeDoc