/** * This file was auto-generated by Fern from our API Definition. */ import * as serializers from "../index"; import * as Vectara from "../../api/index"; import * as core from "../../core"; import { JobType } from "./JobType"; import { CorpusKey } from "./CorpusKey"; import { JobState } from "./JobState"; export declare const Job: core.serialization.ObjectSchema; export declare namespace Job { interface Raw { id?: string | null; type?: JobType.Raw | null; corpus_keys?: CorpusKey.Raw[] | null; state?: JobState.Raw | null; created_at?: string | null; started_at?: string | null; completed_at?: string | null; created_by_username?: string | null; } }