/** * 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 { QuoteDataTotalsItemExtensionInterface } from './quoteDataTotalsItemExtensionInterface'; /** * Interface TotalsItemInterface */ export interface QuoteDataTotalsItemInterface { /** * Item id */ itemId: number; /** * Item price in quote currency. */ price: number; /** * Item price in base currency. */ basePrice: number; /** * Item quantity. */ qty: number; /** * Row total in quote currency. */ rowTotal: number; /** * Row total in base currency. */ baseRowTotal: number; /** * Row total with discount in quote currency. Otherwise, null. */ rowTotalWithDiscount?: number; /** * Tax amount in quote currency. Otherwise, null. */ taxAmount?: number; /** * Tax amount in base currency. Otherwise, null. */ baseTaxAmount?: number; /** * Tax percent. Otherwise, null. */ taxPercent?: number; /** * Discount amount in quote currency. Otherwise, null. */ discountAmount?: number; /** * Discount amount in base currency. Otherwise, null. */ baseDiscountAmount?: number; /** * Discount percent. Otherwise, null. */ discountPercent?: number; /** * Price including tax in quote currency. Otherwise, null. */ priceInclTax?: number; /** * Price including tax in base currency. Otherwise, null. */ basePriceInclTax?: number; /** * Row total including tax in quote currency. Otherwise, null. */ rowTotalInclTax?: number; /** * Row total including tax in base currency. Otherwise, null. */ baseRowTotalInclTax?: number; /** * Item price in quote currency. */ options: string; /** * Item weee tax applied amount in quote currency. */ weeeTaxAppliedAmount: number; /** * Item weee tax applied in quote currency. */ weeeTaxApplied: string; extensionAttributes?: QuoteDataTotalsItemExtensionInterface; /** * Product name. Otherwise, null. */ name?: string; }