import { BasicContact } from '../models/BasicContact'; import { CurrencyValue } from '../models/CurrencyValue'; import { CustomFieldValue } from '../models/CustomFieldValue'; import { InvoiceFile } from '../models/InvoiceFile'; import { OrderItem } from '../models/OrderItem'; import { PaymentPlan } from '../models/PaymentPlan'; import { ShippingInformation } from '../models/ShippingInformation'; export declare class OrderV2 { 'id'?: string; 'title'?: string; 'status'?: OrderV2StatusEnum; 'total'?: CurrencyValue; 'contact'?: BasicContact; 'notes'?: string; 'terms'?: string; 'orderType'?: OrderV2OrderTypeEnum; 'sourceType'?: OrderV2SourceTypeEnum; 'creationTime'?: Date; 'modificationTime'?: Date; 'orderTime'?: Date; 'leadAffiliateId'?: string; 'salesAffiliateId'?: string; 'totalPaid'?: CurrencyValue; 'totalDue'?: CurrencyValue; 'shippingInformation'?: ShippingInformation; 'refundTotal'?: CurrencyValue; 'allowPayment'?: boolean; 'allowPaypal'?: boolean; 'orderItems'?: Array; 'paymentPlan'?: PaymentPlan; 'invoiceNumber'?: string; 'files'?: Array; 'creditStatus'?: string; 'promoCode'?: string; 'refundStatus'?: string; 'synced'?: boolean; 'invoiceId'?: string; '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 OrderV2StatusEnum { Draft = "DRAFT", Sent = "SENT", Viewed = "VIEWED", Paid = "PAID" } export declare enum OrderV2OrderTypeEnum { Online = "ONLINE", Offline = "OFFLINE" } export declare enum OrderV2SourceTypeEnum { Api = "API", CheckoutForm = "CHECKOUT_FORM", Invoice = "INVOICE", ManualPayment = "MANUAL_PAYMENT", Quickbooks = "QUICKBOOKS", Unknown = "UNKNOWN" }