UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

23 lines 458 B
import { Price } from '../order/Price'; /** Details about a bill from customer */ export interface ReverseBill { /** */ date: string; /** */ orderId: number; /** */ password: string; /** */ pdfUrl: string; /** */ priceWithTax: Price; /** */ priceWithoutTax: Price; /** */ reverseBillId: string; /** */ tax: Price; /** */ url: string; } //# sourceMappingURL=ReverseBill.d.ts.map