/* generated using openapi-typescript-codegen -- do not edit */ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ import type { CronDeliveryModeEnum } from './CronDeliveryModeEnum'; /** * Delivery target for a cron run's announce/webhook output. */ export type CronDelivery = { mode: CronDeliveryModeEnum; channel?: string; to?: string; threadId?: string; accountId?: string; bestEffort?: boolean; };