/** * 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 { QuoteDataCartItemExtensionInterface } from './quoteDataCartItemExtensionInterface'; import { QuoteDataProductOptionInterface } from './quoteDataProductOptionInterface'; /** * Interface CartItemInterface */ export interface QuoteDataCartItemInterface { /** * Item ID. Otherwise, null. */ itemId?: number; /** * Product SKU. Otherwise, null. */ sku?: string; /** * Product quantity. */ qty: number; /** * Product name. Otherwise, null. */ name?: string; /** * Product price. Otherwise, null. */ price?: number; /** * Product type. Otherwise, null. */ productType?: string; /** * Quote id. */ quoteId: string; productOption?: QuoteDataProductOptionInterface; extensionAttributes?: QuoteDataCartItemExtensionInterface; }