/** * Generated by orval v8.19.0 🍺 * Do not edit manually. * Webitel API * OpenAPI spec version: 24.04.0 */ import type { WfmLookupEntity } from './wfmLookupEntity.zod'; import type { WfmWorkingScheduleState } from './wfmWorkingScheduleState.zod'; export interface WfmWorkingSchedule { agents?: WfmLookupEntity[]; blockOutsideActivity?: boolean; calendar?: WfmLookupEntity; createdAt?: string; createdBy?: WfmLookupEntity; domainId?: string; endDateAt?: string; endTimeAt?: string; extraSkills?: WfmLookupEntity[]; id?: string; name?: string; startDateAt?: string; startTimeAt?: string; state?: WfmWorkingScheduleState; team?: WfmLookupEntity; totalAgents?: string; updatedAt?: string; updatedBy?: WfmLookupEntity; }