@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
17 lines • 500 B
TypeScript
import { SchedulerCategoryEnum } from './SchedulerCategoryEnum';
/** Scheduled event */
export interface SchedulerEvent {
/** The category of the event */
categories: SchedulerCategoryEnum;
/** The ending date of the event */
dateEnd: string;
/** The beginning date of the event */
dateStart: string;
/** */
description?: string;
/** */
title: string;
/** The unique ICS event identifier */
uid: string;
}
//# sourceMappingURL=SchedulerEvent.d.ts.map