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