import { AnyObject } from '@loopback/repository'; import { CoreModel } from '@sourceloop/core'; import { Attachment } from './attachment.model'; import { Attendee } from './attendee.model'; import { StatusType } from './enums/status.enum'; export declare class EventDTO extends CoreModel { id?: string; bgColor?: string; description?: string; endDateTime?: Date; fgColor?: string; iCalUid?: string; isFullDayEvent?: boolean; isLocked?: boolean; link?: string; location?: string; meetingLink?: string; identifier?: string; startDateTime?: Date; status?: StatusType; summary?: string; timezone?: string; calendarId: string; parentEventId?: string; attachments?: Attachment[]; attendees?: Attendee[]; extId?: string; extMetadata?: AnyObject; }