UNPKG

node-ovh-ts

Version:

OVH API wrapper library for TypeScript

17 lines (14 loc) 451 B
import { OrderPrice } from './OrderPrice.js'; import { OrderOrderDetailTypeEnum } from './OrderOrderDetailTypeEnum.js'; import './OrderCurrencyCodeEnum.js'; type BillingOrderDetail = { cancelled?: boolean; description?: string; detailType?: OrderOrderDetailTypeEnum | null; domain?: string; orderDetailId?: number; quantity?: string; totalPrice?: OrderPrice; unitPrice?: OrderPrice; }; export { BillingOrderDetail };