/** * 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 { SalesDataInvoiceItemExtensionInterface } from './salesDataInvoiceItemExtensionInterface'; /** * Invoice item interface. An invoice is a record of the receipt of payment for an order. An invoice item is a purchased item in an invoice. */ export interface SalesDataInvoiceItemInterface { /** * Additional data. */ additionalData?: string; /** * Base cost. */ baseCost?: number; /** * Base discount amount. */ baseDiscountAmount?: number; /** * Base discount tax compensation amount. */ baseDiscountTaxCompensationAmount?: number; /** * Base price. */ basePrice?: number; /** * Base price including tax. */ basePriceInclTax?: number; /** * Base row total. */ baseRowTotal?: number; /** * Base row total including tax. */ baseRowTotalInclTax?: number; /** * Base tax amount. */ baseTaxAmount?: number; /** * Description. */ description?: string; /** * Discount amount. */ discountAmount?: number; /** * Invoice item ID. */ entityId?: number; /** * Discount tax compensation amount. */ discountTaxCompensationAmount?: number; /** * Name. */ name?: string; /** * Parent ID. */ parentId?: number; /** * Price. */ price?: number; /** * Price including tax. */ priceInclTax?: number; /** * Product ID. */ productId?: number; /** * Row total. */ rowTotal?: number; /** * Row total including tax. */ rowTotalInclTax?: number; /** * SKU. */ sku: string; /** * Tax amount. */ taxAmount?: number; extensionAttributes?: SalesDataInvoiceItemExtensionInterface; /** * Order item ID. */ orderItemId: number; /** * Quantity. */ qty: number; }