src/app/core/http/dtos/interview.dto.ts
Properties |
answers |
answers:
|
Type : Answer[]
|
auditId |
auditId:
|
Type : number
|
endDate |
endDate:
|
Type : string
|
goal |
goal:
|
Type : string
|
id |
id:
|
Type : number
|
Optional |
interviewedContactPersons |
interviewedContactPersons:
|
Type : ContactPerson[]
|
startDate |
startDate:
|
Type : string
|
status |
status:
|
Type : InterviewStatus
|
import { InterviewStatus } from '../../data/models/interview.model';
import { Answer } from '../../data/models/answer.model';
import { ContactPerson } from '../../data/models/contact-person.model';
export interface InterviewDto {
id?: number;
auditId: number;
startDate: string;
endDate: string;
goal: string;
status: InterviewStatus;
answers: Answer[];
interviewedContactPersons: ContactPerson[];
}