UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

11 lines 284 B
import { InvoiceLine } from './InvoiceLine'; /** Description of an invoice */ export interface Invoice { /** Invoice date */ date: string; /** Invoice reference */ id: string; /** Invoice details */ lines: InvoiceLine[]; } //# sourceMappingURL=Invoice.d.ts.map