File

src/app/core/data/models/interview.model.ts

Index

Properties

Properties

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

result-matching ""

    No results matching ""