src/app/core/data/models/answer.model.ts
Properties |
|
annotation |
annotation:
|
Type : string
|
Optional |
documentation |
documentation:
|
Type : boolean
|
Optional |
faccritId |
faccritId:
|
Type : number
|
interviewId |
interviewId:
|
Type : number
|
procedure |
procedure:
|
Type : boolean
|
Optional |
proof |
proof:
|
Type : string
|
Optional |
questionId |
questionId:
|
Type : number
|
reason |
reason:
|
Type : string
|
Optional |
responsible |
responsible:
|
Type : boolean
|
Optional |
result |
result:
|
Type : boolean
|
Optional |
export interface Answer {
interviewId: number;
faccritId: number;
questionId: number;
result?: boolean;
responsible?: boolean;
documentation?: boolean;
procedure?: boolean;
reason?: string;
proof?: string;
annotation?: string;
}