node-ovh-ts
Version:
OVH API wrapper library for TypeScript
19 lines (16 loc) • 442 B
TypeScript
import { OrderPrice } from './OrderPrice.js';
import { BillingCategoryEnum } from './BillingCategoryEnum.js';
import './OrderCurrencyCodeEnum.js';
type BillingBill = {
billId?: string;
category?: BillingCategoryEnum;
date?: Date;
orderId?: number;
password?: string;
pdfUrl?: string;
priceWithTax?: OrderPrice;
priceWithoutTax?: OrderPrice;
tax?: OrderPrice;
url?: string;
};
export { BillingBill };