UNPKG

node-ovh-ts

Version:

OVH API wrapper library for TypeScript

16 lines (13 loc) 513 B
import { OrderCatalogConfigurationItem } from './OrderCatalogConfigurationItem.js'; import { OrderCartGenericProductTypeEnum } from './OrderCartGenericProductTypeEnum.js'; type OrderCatalogProduct = { configurations?: OrderCatalogConfigurationItem[]; description?: string; internalType?: OrderCartGenericProductTypeEnum; metadatas?: string | null; name?: string; subType?: string | null; technicalDetails?: string | null; type?: string | null; }; export { OrderCatalogProduct };