UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

31 lines 725 B
import { CategoryEnum } from './CategoryEnum'; import { EInvoicingStatusEnum } from './EInvoicingStatusEnum'; import { Price } from '../order/Price'; /** Details about a DownPaymentInvoice */ export interface DownPaymentInvoice { /** */ category: CategoryEnum; /** */ date: string; /** */ downPaymentInvoiceId: string; /** */ eInvoicingId?: string; /** */ eInvoicingStatus?: EInvoicingStatusEnum; /** */ orderId: number; /** */ password: string; /** */ pdfUrl: string; /** */ priceWithTax: Price; /** */ priceWithoutTax: Price; /** */ tax: Price; /** */ url: string; } //# sourceMappingURL=DownPaymentInvoice.d.ts.map