In this interface we will see the structure of Item
export interface Item { brand: string; category: string; collections: string[]; color: string; description: string; details_url: string; id: string; image_url: string; isbn: string; manufacturer: string; name: string; options: string; quantity: number; size: string; sku: string; tax_amount: Amount; taxable: boolean; total_amount: Amount; type: string; unit_price: Amount; uom: string; upc: string; weight: Weight;}
Generated using TypeDoc
In this interface we will see the structure of Item