import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * Describes the response body of the /getdocumentstatus API call */ export type GetDocumentStatusResponse = { /** * Upload status, enum of NOT_UPLOADED, UPLOADED, STATUS_UNKNOWN */ uploadStatus?: string | undefined; /** * Time of last successful upload, in epoch seconds */ lastUploadedAt?: number | undefined; /** * Indexing status, enum of NOT_INDEXED, INDEXED, STATUS_UNKNOWN */ indexingStatus?: string | undefined; /** * Time of last successful indexing, in epoch seconds */ lastIndexedAt?: number | undefined; }; /** @internal */ export declare const GetDocumentStatusResponse$inboundSchema: z.ZodType; export declare function getDocumentStatusResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getdocumentstatusresponse.d.ts.map