import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { S3JobConfig } from "./s3-job-config.js"; import { ScheduledTaskEntityType } from "./scheduled-task-entity-type.js"; import { ScheduledTaskInterval } from "./scheduled-task-interval.js"; import { SDKValidationError } from "./sdk-validation-error.js"; export type ScheduledTaskResponse = { connectionId?: string | undefined; createdAt?: Date | undefined; enabled?: boolean | undefined; entityType?: ScheduledTaskEntityType | undefined; environmentId?: string | undefined; id?: string | undefined; interval?: ScheduledTaskInterval | undefined; jobConfig?: S3JobConfig | undefined; status?: string | undefined; tenantId?: string | undefined; updatedAt?: Date | undefined; }; /** @internal */ export declare const ScheduledTaskResponse$inboundSchema: z.ZodMiniType; export declare function scheduledTaskResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=scheduled-task-response.d.ts.map