Skip to main content
Version: v1

FailedEditingResult Interface

Result of applying an invalid or malformed transaction.

Signature

export interface FailedEditingResult extends EditingResultBase

Extends: EditingResultBase

Properties

Property Type Description
changes readonly ChangeInternal[] The valid changes applied as part of the transaction. Those were ultimately abandoned due to the transaction failure.
failure TransactionInternal.Failure Information about what caused the transaction to fail.
status EditStatus.Invalid | EditStatus.Malformed The final status of the transaction.
steps readonly ReconciliationChange[] The editing steps applied as part of the transaction. Those were ultimately abandoned due to the transaction failure.

Property Details

changes

The valid changes applied as part of the transaction. Those were ultimately abandoned due to the transaction failure.

Signature

readonly changes: readonly ChangeInternal[];

Type: readonly ChangeInternal[]

failure

Information about what caused the transaction to fail.

Signature

readonly failure: TransactionInternal.Failure;

Type: TransactionInternal.Failure

status

The final status of the transaction.

Signature

readonly status: EditStatus.Invalid | EditStatus.Malformed;

Type: EditStatus.Invalid | EditStatus.Malformed

steps

The editing steps applied as part of the transaction. Those were ultimately abandoned due to the transaction failure.

Signature

readonly steps: readonly ReconciliationChange[];

Type: readonly ReconciliationChange[]