node-ovh-ts
Version:
OVH API wrapper library for TypeScript
18 lines (15 loc) • 384 B
TypeScript
import { OrderPrice } from './OrderPrice.js';
import './OrderCurrencyCodeEnum.js';
type BillingRefund = {
date?: Date;
orderId?: number;
originalBillId?: string | null;
password?: string;
pdfUrl?: string;
priceWithTax?: OrderPrice;
priceWithoutTax?: OrderPrice;
refundId?: string;
tax?: OrderPrice;
url?: string;
};
export { BillingRefund };