import {EntityInterface} from '../interface/entity-interface'; import {IOperatorMeetingParticipant} from './operator-meeting-participant'; export interface IOperatorMeeting extends EntityInterface { operator_id: number; creation_user_id: number; owner_user_id: number; meeting_type_id: number; title: string; description: string; start_date: string; end_date: string; operator_contact_id: number; gender: string; firstname: string; lastname: string; email: string; phone_no: string; mobile_no: string; department: string; street: string; street_no: string; zip: string; city: string; country_id: number; report: string; first_reminder_sent: boolean; second_reminder_sent: boolean; report_reminder_sent: boolean; creation_date: string; v_participants: IOperatorMeetingParticipant[]; v_is_editable: boolean; }