# TransactionResult

> _Since v1.27.0_

Result of a RowTransaction applied via `applyTransaction`.

Contains the actual row objects that were affected, useful for
post-processing or logging.

## Properties

| Property | Type | Description |
| -------- | ---- | ----------- |
| `added` | <code>TRow[]</code> | Rows that were successfully added. |
| `updated` | <code>TRow[]</code> | Rows that were successfully updated (references to the mutated row objects). |
| `removed` | <code>TRow[]</code> | Rows that were successfully removed. |

## See Also

- [`RowTransaction`](/grid/api/core/interfaces/rowtransaction.md) for the input structure
