import { CalAttendeeRole } from "./CalAttendeeRole"; import { CalAttendeeState } from "./CalAttendeeState"; export interface CalAttendee { organId?: string; organName?: string; readTime?: number; role?: CalAttendeeRole; state?: CalAttendeeState; notes?: string; type?: string; alias?: any; username?: string; fullname?: string; display?: string; _stateText?: string; }