/** * Magento Community * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * * OpenAPI spec version: 2.2 * * * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen.git * Do not edit the class manually. */ import { CatalogInventoryDataStockItemExtensionInterface } from './catalogInventoryDataStockItemExtensionInterface'; /** * Interface StockItem */ export interface CatalogInventoryDataStockItemInterface { itemId?: number; productId?: number; /** * Stock identifier */ stockId?: number; qty: number; /** * Stock Availability */ isInStock: boolean; isQtyDecimal: boolean; showDefaultNotificationMessage: boolean; useConfigMinQty: boolean; /** * Minimal quantity available for item status in stock */ minQty: number; useConfigMinSaleQty: number; /** * Minimum Qty Allowed in Shopping Cart or NULL when there is no limitation */ minSaleQty: number; useConfigMaxSaleQty: boolean; /** * Maximum Qty Allowed in Shopping Cart data wrapper */ maxSaleQty: number; useConfigBackorders: boolean; /** * Backorders status */ backorders: number; useConfigNotifyStockQty: boolean; /** * Notify for Quantity Below data wrapper */ notifyStockQty: number; useConfigQtyIncrements: boolean; /** * Quantity Increments data wrapper */ qtyIncrements: number; useConfigEnableQtyInc: boolean; /** * Whether Quantity Increments is enabled */ enableQtyIncrements: boolean; useConfigManageStock: boolean; /** * Can Manage Stock */ manageStock: boolean; lowStockDate: string; isDecimalDivided: boolean; stockStatusChangedAuto: number; extensionAttributes?: CatalogInventoryDataStockItemExtensionInterface; }