src/app/core/http/dtos/post-interview.dto.ts
Properties |
| auditId |
auditId:
|
Type : number
|
| goal |
goal:
|
Type : string
|
| interviewedContactPersons |
interviewedContactPersons:
|
Type : literal type[]
|
| interviewScope |
interviewScope:
|
Type : number[]
|
| startDate |
startDate:
|
Type : string
|
export interface PostInterviewDto {
auditId: number;
startDate: string;
goal: string;
interviewedContactPersons: { id: number; role: string }[];
interviewScope: number[];
}