import { CurrencyValue } from '../models/CurrencyValue'; import { Discount } from '../models/Discount'; import { OrderItemProduct } from '../models/OrderItemProduct'; import { SubscriptionPlan } from '../models/SubscriptionPlan'; export declare class OrderItem { 'id'?: string; 'name'?: string; 'description'?: string; 'notes'?: string; 'quantity'?: number; 'discount'?: CurrencyValue; 'special'?: Discount; 'product'?: OrderItemProduct; 'subscriptionId'?: string; 'itemType'?: OrderItemItemTypeEnum; 'costPerUnit'?: CurrencyValue; 'pricePerUnit'?: CurrencyValue; 'subscriptionPlan'?: SubscriptionPlan; static readonly discriminator: string | undefined; static readonly mapping: { [index: string]: string; } | undefined; static readonly attributeTypeMap: Array<{ name: string; baseName: string; type: string; format: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; format: string; }[]; constructor(); } export declare enum OrderItemItemTypeEnum { Product = "PRODUCT", Shipping = "SHIPPING", Tax = "TAX", Service = "SERVICE", Upsell = "UPSELL", FinanceCharge = "FINANCE_CHARGE", Discount = "DISCOUNT", Program = "PROGRAM", Subscription = "SUBSCRIPTION", DiscountFreeTrial = "DISCOUNT_FREE_TRIAL", DiscountOrderTotal = "DISCOUNT_ORDER_TOTAL", DiscountProduct = "DISCOUNT_PRODUCT", DiscountProductCategory = "DISCOUNT_PRODUCT_CATEGORY", DiscountShipping = "DISCOUNT_SHIPPING", Tip = "TIP", Other = "OTHER", Unknown = "UNKNOWN" }