import { AddressInformation } from '../models/AddressInformation'; import { CustomFieldValue } from '../models/CustomFieldValue'; import { UpdatedPaymentPlan } from '../models/UpdatedPaymentPlan'; export declare class UpdateOrderRequest { 'notes'?: string; 'terms'?: string; 'contactId'?: string; 'orderTitle'?: string; 'orderTime'?: Date; 'orderType'?: UpdateOrderRequestOrderTypeEnum; 'promoCodes'?: Array; 'leadAffiliateId'?: string; 'salesAffiliateId'?: string; 'shippingAddress'?: AddressInformation; 'paymentPlan'?: UpdatedPaymentPlan; 'customFields'?: Array; 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 UpdateOrderRequestOrderTypeEnum { Online = "ONLINE", Offline = "OFFLINE" }