Represents a product with the SKU details and the corresponding quantity.

ProductQuantity

interface ProductQuantity {
    attributes?: ProductAttribute[];
    quantity: number;
    sku: string;
}

Properties

attributes?: ProductAttribute[]

Attributes for this instance of the product. For example, already-prepped, or other attributes that distinguish the product beyond the SKU.

ProductQuantity

quantity: number

Product quantity.

ProductQuantity

sku: string

The seller or merchant SKU.

ProductQuantity