import { DutyRole } from "./codes.js"; import { Person } from "./persons.js"; import { Organisation } from "./organisation.js"; //#region src/SS12000/types/duties.d.ts type DutyAssignmentRole = { group?: { id: string; displayName?: string; }; assignmentRoleType?: string; startDate?: string; endDate?: string; }; type Duty = { id: string; organisation?: Organisation; dutyAt?: Organisation; dutyRole: DutyRole; description?: string; signature?: string; dutyPercent?: number; hoursPerYear?: number; startDate: string; endDate?: string; assignmentRole?: DutyAssignmentRole[]; assignmentRoles?: DutyAssignmentRole[]; person?: Person; displayName?: string; _embedded?: { person?: Person; }; }; //#endregion export { Duty }; //# sourceMappingURL=duties.d.ts.map