@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
22 lines • 472 B
TypeScript
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