cal.pub0.org/packages/core/builders/CalendarEvent/class.ts

34 lines
979 B
TypeScript
Raw Normal View History

2022-05-18 01:54:50 +00:00
import { DestinationCalendar } from "@prisma/client";
2022-05-18 01:54:50 +00:00
import { AdditionInformation, CalendarEvent, ConferenceData, Person } from "@calcom/types/Calendar";
class CalendarEventClass implements CalendarEvent {
type!: string;
title!: string;
startTime!: string;
endTime!: string;
organizer!: Person;
attendees!: Person[];
description?: string | null;
team?: { name: string; members: string[] };
location?: string | null;
conferenceData?: ConferenceData;
additionInformation?: AdditionInformation;
uid?: string | null;
videoCallData?: any;
paymentInfo?: any;
destinationCalendar?: DestinationCalendar | null;
cancellationReason?: string | null;
rejectionReason?: string | null;
hideCalendarNotes?: boolean;
additionalNotes?: string | null | undefined;
recurrence?: string;
constructor(initProps?: CalendarEvent) {
// If more parameters are given we update this
Object.assign(this, initProps);
}
}
export { CalendarEventClass };