Order: {
    adjustedMerchandizeTotalTax?: number;
    adjustedShippingTotalTax?: number;
    billingAddress?: OrderAddress;
    bonusDiscountLineItems?: BonusDiscountLineItem[];
    channelType?: string;
    confirmationStatus?: string;
    couponItems?: CouponItem[];
    createdBy?: string;
    creationDate?: any;
    currency?: string;
    customerInfo?: CustomerInfo;
    customerName?: string;
    exportStatus?: string;
    externalOrderStatus?: string;
    giftCertificateItems?: GiftCertificateItem[];
    globalPartyId?: string;
    lastModified?: any;
    merchandizeTotalTax?: number;
    notes?: SimpleLink;
    orderNo?: string;
    orderPriceAdjustments?: PriceAdjustment[];
    orderToken?: string;
    orderTotal?: number;
    paymentInstruments?: OrderPaymentInstrument[];
    paymentStatus?: string;
    productItems?: ProductItem[];
    productSubTotal?: number;
    productTotal?: number;
    shipments?: Shipment[];
    shippingItems?: ShippingItem[];
    shippingStatus?: string;
    shippingTotal?: number;
    shippingTotalTax?: number;
    siteId?: string;
    sourceCode?: string;
    status?: string;
    taxTotal?: number;
    taxation?: string;
} & {
    [key: string]: any;
}