/** * 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 { SalesDataTotalExtensionInterface } from './salesDataTotalExtensionInterface'; /** * Interface TotalInterface */ export interface SalesDataTotalInterface { /** * Base shipping amount. */ baseShippingAmount?: number; /** * Base shipping canceled. */ baseShippingCanceled?: number; /** * Base shipping discount amount. */ baseShippingDiscountAmount?: number; /** * Base shipping discount tax compensation amount. */ baseShippingDiscountTaxCompensationAmnt?: number; /** * Base shipping including tax. */ baseShippingInclTax?: number; /** * Base shipping invoiced. */ baseShippingInvoiced?: number; /** * Base shipping refunded. */ baseShippingRefunded?: number; /** * Base shipping tax amount. */ baseShippingTaxAmount?: number; /** * Base shipping tax refunded. */ baseShippingTaxRefunded?: number; /** * Shipping amount. */ shippingAmount?: number; /** * Shipping canceled amount. */ shippingCanceled?: number; /** * Shipping discount amount. */ shippingDiscountAmount?: number; /** * Shipping discount tax compensation amount. */ shippingDiscountTaxCompensationAmount?: number; /** * Shipping including tax amount. */ shippingInclTax?: number; /** * Shipping invoiced amount. */ shippingInvoiced?: number; /** * Shipping refunded amount. */ shippingRefunded?: number; /** * Shipping tax amount. */ shippingTaxAmount?: number; /** * Shipping tax refunded amount. */ shippingTaxRefunded?: number; extensionAttributes?: SalesDataTotalExtensionInterface; }