Change triggered by the Change TransactionState update action.

interface ChangeTransactionStateChange {
    change: string;
    nextValue: string;
    previousValue: string;
    transaction: TransactionChangeValue;
    type: "ChangeTransactionStateChange";
}

Properties

change: string
nextValue: string

Value after the change.

previousValue: string

Value before the change.

Holds information about the updated Transaction.

type: "ChangeTransactionStateChange"