Class ProductInventoryList

The ProductInventoryList provides access to ID, description and defaultInStockFlag of the list. Furthermore inventory records can be accessed by product or product ID.

When using Omnichannel Inventory (OCI):

  • B2C Commerce uses ProductInventoryLists to reference and expose OCI Locations and Location Groups. They're required for synchronizing availability data and creating reservations.
  • Create a ProductInventoryList in B2C Commerce for each OCI Location and Location Group that B2C Commerce will access. The ProductInventoryList ID must match the External Reference field on the corresponding Location or Location Group.
  • A ProductInventoryList ID/External Reference must have between 2 and 128 characters (inclusive). It can include only lowercase letters, uppercase letters, digits, hyphens, and underscores.
PropertyDescription
ID: String (read-only)Returns the ID of the inventory list.
defaultInStockFlag: Boolean (read-only)Returns the default in-stock flag of the inventory list.
description: String (read-only)Returns the description of the inventory list.

This class does not have a constructor, so you cannot create it directly.

MethodDescription
getDefaultInStockFlag()Returns the default in-stock flag of the inventory list.
getDescription()Returns the description of the inventory list.
getID()Returns the ID of the inventory list.
getRecord(Product)Returns the inventory record for the specified product or null if there is no record for the product in this list.
getRecord(String)Returns the inventory record for the specified product ID or null if there is no record for the product id in this list.

describe, getCustom

getCreationDate, getLastModified, getUUID

assign, create, create, defineProperties, defineProperty, entries, freeze, fromEntries, getOwnPropertyDescriptor, getOwnPropertyNames, getOwnPropertySymbols, getPrototypeOf, hasOwnProperty, is, isExtensible, isFrozen, isPrototypeOf, isSealed, keys, preventExtensions, propertyIsEnumerable, seal, setPrototypeOf, toLocaleString, toString, valueOf, values

ID: String (read-only)

Returns the ID of the inventory list.


defaultInStockFlag: Boolean (read-only)

Returns the default in-stock flag of the inventory list.


description: String (read-only)

Returns the description of the inventory list.


getDefaultInStockFlag(): Boolean

Returns the default in-stock flag of the inventory list.

Returns:

  • Default in-stock flag of inventory list.

getDescription(): String

Returns the description of the inventory list.

Returns:

  • Description of inventory list.

getID(): String

Returns the ID of the inventory list.

Returns:

  • ID of inventory list.

getRecord(product: Product): ProductInventoryRecord

Returns the inventory record for the specified product or null if there is no record for the product in this list.

Parameters:

  • product - The product to lookup inventory record.

Returns:

  • Inventory record or null if not found.

getRecord(productID: String): ProductInventoryRecord

Returns the inventory record for the specified product ID or null if there is no record for the product id in this list.

Parameters:

  • productID - The product ID to lookup inventory record.

Returns:

  • Inventory record or null if not found.