/** * 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 { CustomerDataCustomerInterface } from './customerDataCustomerInterface'; import { QuoteDataAddressInterface } from './quoteDataAddressInterface'; import { QuoteDataCartExtensionInterface } from './quoteDataCartExtensionInterface'; import { QuoteDataCartItemInterface } from './quoteDataCartItemInterface'; import { QuoteDataCurrencyInterface } from './quoteDataCurrencyInterface'; /** * Interface CartInterface */ export interface QuoteDataCartInterface { /** * Cart/quote ID. */ id: number; /** * Cart creation date and time. Otherwise, null. */ createdAt?: string; /** * Cart last update date and time. Otherwise, null. */ updatedAt?: string; /** * Cart conversion date and time. Otherwise, null. */ convertedAt?: string; /** * Active status flag value. Otherwise, null. */ isActive?: boolean; /** * Virtual flag value. Otherwise, null. */ isVirtual?: boolean; /** * Array of items. Otherwise, null. */ items?: Array; /** * Number of different items or products in the cart. Otherwise, null. */ itemsCount?: number; /** * Total quantity of all cart items. Otherwise, null. */ itemsQty?: number; customer: CustomerDataCustomerInterface; billingAddress?: QuoteDataAddressInterface; /** * Reserved order ID. Otherwise, null. */ reservedOrderId?: number; /** * Original order ID. Otherwise, null. */ origOrderId?: number; currency?: QuoteDataCurrencyInterface; /** * For guest customers, false for logged in customers */ customerIsGuest?: boolean; /** * Notice text */ customerNote?: string; /** * Customer notification flag */ customerNoteNotify?: boolean; /** * Customer tax class ID. */ customerTaxClassId?: number; /** * Store identifier */ storeId: number; extensionAttributes?: QuoteDataCartExtensionInterface; }