@experts_hub/shared
Version:
Shared DTOs, interfaces, and utilities for experts hub applications
22 lines (21 loc) • 644 B
TypeScript
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;
}