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