/** * 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 { QuoteDataTotalSegmentInterface } from './quoteDataTotalSegmentInterface'; import { QuoteDataTotalsExtensionInterface } from './quoteDataTotalsExtensionInterface'; import { QuoteDataTotalsItemInterface } from './quoteDataTotalsItemInterface'; /** * Interface TotalsInterface */ export interface QuoteDataTotalsInterface { /** * Grand total in quote currency */ grandTotal?: number; /** * Grand total in base currency */ baseGrandTotal?: number; /** * Subtotal in quote currency */ subtotal?: number; /** * Subtotal in base currency */ baseSubtotal?: number; /** * Discount amount in quote currency */ discountAmount?: number; /** * Discount amount in base currency */ baseDiscountAmount?: number; /** * Subtotal in quote currency with applied discount */ subtotalWithDiscount?: number; /** * Subtotal in base currency with applied discount */ baseSubtotalWithDiscount?: number; /** * Shipping amount in quote currency */ shippingAmount?: number; /** * Shipping amount in base currency */ baseShippingAmount?: number; /** * Shipping discount amount in quote currency */ shippingDiscountAmount?: number; /** * Shipping discount amount in base currency */ baseShippingDiscountAmount?: number; /** * Tax amount in quote currency */ taxAmount?: number; /** * Tax amount in base currency */ baseTaxAmount?: number; /** * Item weee tax applied amount in quote currency. */ weeeTaxAppliedAmount: number; /** * Shipping tax amount in quote currency */ shippingTaxAmount?: number; /** * Shipping tax amount in base currency */ baseShippingTaxAmount?: number; /** * Subtotal including tax in quote currency */ subtotalInclTax?: number; /** * Subtotal including tax in base currency */ baseSubtotalInclTax?: number; /** * Shipping including tax in quote currency */ shippingInclTax?: number; /** * Shipping including tax in base currency */ baseShippingInclTax?: number; /** * Base currency code */ baseCurrencyCode?: string; /** * Quote currency code */ quoteCurrencyCode?: string; /** * Applied coupon code */ couponCode?: string; /** * Items qty */ itemsQty?: number; /** * Totals by items */ items?: Array; /** * Dynamically calculated totals */ totalSegments: Array; extensionAttributes?: QuoteDataTotalsExtensionInterface; }