File

src/app/core/http/dtos/interview.dto.ts

Index

Properties

Properties

answers
answers: Answer[]
Type : Answer[]
auditId
auditId: number
Type : number
endDate
endDate: string
Type : string
goal
goal: string
Type : string
id
id: number
Type : number
Optional
interviewedContactPersons
interviewedContactPersons: ContactPerson[]
Type : ContactPerson[]
startDate
startDate: string
Type : string
status
status: InterviewStatus
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[];
}

result-matching ""

    No results matching ""