UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

25 lines 472 B
import { Price } from '../order/Price'; /** Details about a Refund */ export interface Refund { /** */ date: string; /** */ orderId: number; /** */ originalBillId?: string; /** */ password: string; /** */ pdfUrl: string; /** */ priceWithTax: Price; /** */ priceWithoutTax: Price; /** */ refundId: string; /** */ tax: Price; /** */ url: string; } //# sourceMappingURL=Refund.d.ts.map