node-ovh-ts
Version:
OVH API wrapper library for TypeScript
13 lines (10 loc) • 322 B
TypeScript
import { TelephonySchedulerCategoryEnum } from './TelephonySchedulerCategoryEnum.js';
type TelephonySchedulerEvent = {
categories?: TelephonySchedulerCategoryEnum;
dateEnd?: Date;
dateStart?: Date;
description?: string | null;
title?: string;
uid?: string;
};
export { TelephonySchedulerEvent };