import { Price } from '../order/Price';
/** Details about an Order */
export interface Order {
    /**  */
    date?: string;
    /**  */
    expirationDate?: string;
    /**  */
    orderId: number;
    /**  */
    password: string;
    /**  */
    pdfUrl: string;
    /**  */
    priceWithTax: Price;
    /**  */
    priceWithoutTax: Price;
    /**  */
    retractionDate?: string;
    /**  */
    tax: Price;
    /**  */
    url: string;
}
//# sourceMappingURL=Order.d.ts.map