object LotType
Fields
| Field | Type | Description |
|---|---|---|
id | ID! | The ID of the object |
name | String! | |
sku | String! | |
account_id | Int! | |
quantity | Int | |
created_at | DateTime! | |
updated_at | DateTime! | |
expires_at | Date | |
received_at | DateTime | |
is_active | Boolean! | |
item_bins | [ProductLocationType] | |
row_id | BigInt | |
customer_name | String | |
warehouse | WarehouseType | |
current_quantity | Int | |
warehouse_location | String | |
consider_as_expired | Boolean |
Implements
Referenced By
Example
{
"id": "abc123",
"name": "abc123",
"sku": "abc123",
"account_id": 987,
"quantity": 987,
"created_at": "abc123",
"updated_at": "abc123",
"expires_at": "abc123",
"received_at": "abc123",
"is_active": true,
"item_bins": ProductLocationType,
"row_id": "abc123",
"customer_name": "abc123",
"warehouse": WarehouseType,
"current_quantity": 987,
"warehouse_location": "abc123",
"consider_as_expired": true
}