OutOfStockProduct Model

Represents a single out of stock product

Nullable MaxLength(64)
productID : string

unique ID received from provider for this product. Could be PLU, could be an actual ID of the PLU record

can also be null which will indicate to POS to create a customised product for this item

Nullable MaxLength(64)
productModifierID : string

unique ID received from provider for the sales modifier assigned to this product. May be a valid SalesModifierID guid reference or a SaleModifier Prefix (8 digits max). Null = no modifier

can also be null

Nullable MaxLength(50) Truncates
name : string

fallback product name (as ordered by consumer)

Example
{
  "productID": "string value",
  "productModifierID": "string value",
  "name": "string value"
}