src/app/core/http/dtos/audit.dto.ts
Properties |
cancellationContactPerson |
cancellationContactPerson:
|
Type : ContactPerson
|
cancellationDate |
cancellationDate:
|
Type : string
|
cancellationReason |
cancellationReason:
|
Type : string
|
contactPersons |
contactPersons:
|
Type : ContactPerson[]
|
creationDate |
creationDate:
|
Type : string
|
endDate |
endDate:
|
Type : string
|
id |
id:
|
Type : number
|
name |
name:
|
Type : string
|
scope |
scope:
|
Type : FacCrit[]
|
startDate |
startDate:
|
Type : string
|
status |
status:
|
Type : AuditStatus
|
import { FacCrit } from '../../data/models/faccrit.model';
import { ContactPerson } from '../../data/models/contact-person.model';
import { AuditStatus } from '../../data/models/audit.model';
export interface AuditDto {
id: number;
name: string;
startDate: string;
endDate: string;
creationDate: string;
status: AuditStatus;
scope: FacCrit[];
contactPersons: ContactPerson[];
cancellationDate: string;
cancellationReason: string;
cancellationContactPerson: ContactPerson;
}