import { Price } from '../order/Price';
import { PaymentInfo } from '../debt/associatedObject/PaymentInfo';
/** Details about a deposit */
export interface Deposit {
    /**  */
    amount: Price;
    /**  */
    date: string;
    /**  */
    depositId: string;
    /**  */
    orderId: number;
    /**  */
    password: string;
    /**  */
    paymentInfo?: PaymentInfo;
    /**  */
    pdfUrl: string;
    /**  */
    url: string;
}
//# sourceMappingURL=Deposit.d.ts.map