FileMaster
Search
Toggle Dark Mode
Home
/
.
/
wp-content
/
plugins
/
ameliabooking
/
vendor
/
square
/
square
/
doc
/
models
Edit File: inventory-adjustment-group.md
# 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 { "id": "id4", "root_adjustment_id": "root_adjustment_id4", "from_state": "WASTE", "to_state": "RESERVED_FOR_SALE" } ```
Save
Back