UNPKG

node-ovh-ts

Version:

OVH API wrapper library for TypeScript

13 lines (10 loc) 371 B
import { TelephonyRmaStepStatusEnum } from './TelephonyRmaStepStatusEnum.js'; import { TelephonyRmaStepNameEnum } from './TelephonyRmaStepNameEnum.js'; type TelephonyRmaStep = { description?: string; doneDate?: Date | null; infos?: string | null; name?: TelephonyRmaStepNameEnum; status?: TelephonyRmaStepStatusEnum; }; export { TelephonyRmaStep };