import { Price } from '../order/Price';
/** Information about a Deposit entry */
export interface DepositDetail {
    /**  */
    depositDetailId: string;
    /**  */
    description: string;
    /**  */
    domain: string;
    /**  */
    quantity: string;
    /**  */
    totalPrice: Price;
    /**  */
    unitPrice: Price;
}
//# sourceMappingURL=DepositDetail.d.ts.map