/** * The assignment-affecting action this appointment type drives */ export const AppointmentTypeAction = { "CREATE_PRIMARY_ASSIGNMENT": "CREATE_PRIMARY_ASSIGNMENT", "CREATE_SECONDARY_ASSIGNMENT": "CREATE_SECONDARY_ASSIGNMENT", "CHANGE_ASSIGNMENT": "CHANGE_ASSIGNMENT", "END_ASSIGNMENT": "END_ASSIGNMENT" } as const; export type AppointmentTypeAction = (typeof AppointmentTypeAction)[keyof typeof AppointmentTypeAction]; /** * ACTIVE or INACTIVE */ export const AppointmentTypeStatus = { "ACTIVE": "ACTIVE", "INACTIVE": "INACTIVE" } as const; export type AppointmentTypeStatus = (typeof AppointmentTypeStatus)[keyof typeof AppointmentTypeStatus]; /** * ACTIVE or INACTIVE */ export const EmploymentTypeStatus = { "ACTIVE": "ACTIVE", "INACTIVE": "INACTIVE" } as const; export type EmploymentTypeStatus = (typeof EmploymentTypeStatus)[keyof typeof EmploymentTypeStatus]; /** * ACTIVE or INACTIVE */ export const WorkRegimeStatus = { "ACTIVE": "ACTIVE", "INACTIVE": "INACTIVE" } as const; export type WorkRegimeStatus = (typeof WorkRegimeStatus)[keyof typeof WorkRegimeStatus];