/* generated using openapi-typescript-codegen -- do not edit */ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ import type { CronDelivery } from './CronDelivery'; import type { CronPayload } from './CronPayload'; import type { CronSchedule } from './CronSchedule'; import type { WakeModeEnum } from './WakeModeEnum'; /** * Documentation-only — describes the ``CronJob`` shape worker returns. * * The view returns the raw dict from the RPC; this serializer is wired into * ``@extend_schema(responses=...)`` so drf-spectacular knows the shape but * we don't bother running it on output (the wire dict is authoritative). */ export type CronJobResponse = { id: string; name: string; description?: string; agentId?: string; sessionKey?: string; enabled: boolean; deleteAfterRun?: boolean; createdAtMs: number; updatedAtMs: number; schedule: CronSchedule; sessionTarget: string; wakeMode: WakeModeEnum; payload: CronPayload; delivery?: CronDelivery; state?: Record; };