export declare class CreateOrderItemRequest { 'name'?: string; 'description'?: string; 'quantity': number; 'notes'?: string; 'productId'?: string; 'subscriptionPlanId'?: string; 'subscriptionPlanDescription'?: string; 'itemType'?: CreateOrderItemRequestItemTypeEnum; 'pricePerUnit'?: number; 'costPerUnit'?: number; 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 CreateOrderItemRequestItemTypeEnum { Product = "PRODUCT", Shipping = "SHIPPING", Tax = "TAX", FinanceCharge = "FINANCE_CHARGE", Subscription = "SUBSCRIPTION", Discount = "DISCOUNT", DiscountFreeTrial = "DISCOUNT_FREE_TRIAL", DiscountOrderTotal = "DISCOUNT_ORDER_TOTAL", DiscountProduct = "DISCOUNT_PRODUCT", DiscountProductCategory = "DISCOUNT_PRODUCT_CATEGORY", DiscountShipping = "DISCOUNT_SHIPPING", Other = "OTHER" }