InventoryChange
November 20, 2019 ยท View on GitHub
Description
Represents a single physical count, inventory, adjustment, or transfer that is part of the history of inventory changes for a particular CatalogObject.
Properties
| Name | Getter | Setter | Type | Description | Notes |
|---|---|---|---|---|---|
| type | getType() | setType($value) | string | Indicates how the inventory change was applied. See `InventoryChangeType` for all possible values. See InventoryChangeType for possible values | [optional] |
| physical_count | getPhysicalCount() | setPhysicalCount($value) | \SquareConnect\Model\InventoryPhysicalCount | Contains details about the physical count when `type` is `PHYSICAL_COUNT` and unset for all other types. | [optional] |
| adjustment | getAdjustment() | setAdjustment($value) | \SquareConnect\Model\InventoryAdjustment | Contains details about the inventory adjustment when `type` is `ADJUSTMENT` and unset for all other types. | [optional] |
| transfer | getTransfer() | setTransfer($value) | \SquareConnect\Model\InventoryTransfer | Contains details about the inventory transfer when `type` is `TRANSFER` and unset for all other types. | [optional] |
Note: All properties are protected and only accessed via getters and setters.