src/app/core/data/models/interview.model.ts
Properties |
answers |
answers:
|
Type : Answer[]
|
Optional |
auditId |
auditId:
|
Type : number
|
Optional |
contactPersons |
contactPersons:
|
Type : ContactPerson[]
|
endDate |
endDate:
|
Type : number
|
Optional |
goal |
goal:
|
Type : string
|
Optional |
id |
id:
|
Type : number
|
Optional |
startDate |
startDate:
|
Type : number
|
Optional |
status |
status:
|
Type : InterviewStatus
|
import { ContactPerson } from './contact-person.model';
import { Answer } from './answer.model';
export enum InterviewStatus {
Active = 'ACTIVE',
Finished = 'FINISHED',
}
export interface Interview {
id?: number;
auditId?: number;
startDate?: number;
endDate?: number;
status: InterviewStatus;
goal?: string;
contactPersons: ContactPerson[];
answers?: Answer[];
}