/** * This file was auto-generated by Fern from our API Definition. */ import * as serializers from "../../../index"; import * as Flatfile from "../../../../api/index"; import * as core from "../../../../core"; import { JobId } from "../../commons/types/JobId"; import { ActorId } from "../../commons/types/ActorId"; import { SpaceId } from "../../commons/types/SpaceId"; import { JobConfig } from "./JobConfig"; export declare const Job: core.serialization.ObjectSchema; export declare namespace Job { interface Raw extends JobConfig.Raw { id: JobId.Raw; createdBy: ActorId.Raw; createdAt: string; updatedAt: string; startedAt?: string | null; finishedAt?: string | null; outcomeAcknowledgedAt?: string | null; spaceId?: SpaceId.Raw | null; } }