
# Inventory Adjustment Group

## Structure

`InventoryAdjustmentGroup`

## Fields

| Name | Type | Tags | Description | Getter | Setter |
|  --- | --- | --- | --- | --- | --- |
| `id` | `?string` | Optional | A unique ID generated by Square for the<br>`InventoryAdjustmentGroup`.<br>**Constraints**: *Maximum Length*: `100` | getId(): ?string | setId(?string id): void |
| `rootAdjustmentId` | `?string` | Optional | The inventory adjustment of the composed variation.<br>**Constraints**: *Maximum Length*: `100` | getRootAdjustmentId(): ?string | setRootAdjustmentId(?string rootAdjustmentId): void |
| `fromState` | [`?string (InventoryState)`](../../doc/models/inventory-state.md) | Optional | Indicates the state of a tracked item quantity in the lifecycle of goods. | getFromState(): ?string | setFromState(?string fromState): void |
| `toState` | [`?string (InventoryState)`](../../doc/models/inventory-state.md) | Optional | Indicates the state of a tracked item quantity in the lifecycle of goods. | getToState(): ?string | setToState(?string toState): void |

## Example (as JSON)

```json
{
  "from_state": null,
  "to_state": null
}
```

