UNPKG

node-ovh-ts

Version:

OVH API wrapper library for TypeScript

16 lines (13 loc) 469 B
import { TelephonyFaxConsumptionWayTypeEnum } from './TelephonyFaxConsumptionWayTypeEnum.js'; import { OrderPrice } from './OrderPrice.js'; import './OrderCurrencyCodeEnum.js'; type TelephonyFaxConsumption = { called?: string | null; calling?: string | null; consumptionId?: number; creationDatetime?: Date; pages?: number; priceWithoutTax?: OrderPrice; wayType?: TelephonyFaxConsumptionWayTypeEnum; }; export { TelephonyFaxConsumption };