import * as z from "zod/v3"; /** * Describes the request body for /getdocumentstatus API call */ export type GetDocumentStatusRequest = { /** * Datasource to get fetch document status for */ datasource: string; /** * Object type of the document to get the status for */ objectType: string; /** * Glean Document ID within the datasource to get the status for. */ docId: string; }; /** @internal */ export type GetDocumentStatusRequest$Outbound = { datasource: string; objectType: string; docId: string; }; /** @internal */ export declare const GetDocumentStatusRequest$outboundSchema: z.ZodType; export declare function getDocumentStatusRequestToJSON(getDocumentStatusRequest: GetDocumentStatusRequest): string; //# sourceMappingURL=getdocumentstatusrequest.d.ts.map