UNPKG

node-ovh-ts

Version:

OVH API wrapper library for TypeScript

18 lines (15 loc) 494 B
import { OrderPrice } from './OrderPrice.js'; import { CloudCommonVoucherValidity } from './CloudCommonVoucherValidity.js'; import './OrderCurrencyCodeEnum.js'; type CloudCredit = { available_credit?: OrderPrice; bill?: string | null; description?: string | null; id?: number; products?: string[] | null; total_credit?: OrderPrice; used_credit?: OrderPrice; validity?: CloudCommonVoucherValidity | null; voucher?: string | null; }; export { CloudCredit };