UNPKG

@experts_hub/shared

Version:

Shared DTOs, interfaces, and utilities for experts hub applications

28 lines (27 loc) 849 B
import { BaseEntity } from "./base.entity"; import { F2FInterview } from "./f2f-interview.entity"; export declare enum F2fInterviewScheduleStatusEnum { ACTIVE = "ACTIVE", COMPELETED = "COMPELETED", RESCHEDULED = "RESCHEDULED", CANCELLED = "CANCELLED" } export declare class F2FInterviewSchedule extends BaseEntity { f2fInterviewId: number; f2fInterview: F2FInterview; eventId: string; meetingZoomLink: string; meetingId: string; meetingPasscode: string; rescheduleUrl: string; cancelUrl: string; status: F2fInterviewScheduleStatusEnum; meetingStartTime: Date; meetingEndTime: Date; meetingEligibleStartTime: Date; meetingEligibleExpiryTime: Date; meetingVideoRecordingUrl: string; meetingAudioRecordingUrl: string; meetingTranscript: any; meetingRecordings: any; }