import * as z from "zod/v3"; /** * Describes the request body of the /deletedocument API call */ export type DeleteDocumentRequest = { /** * Version number for document for optimistic concurrency control. If absent or 0 then no version checks are done. */ version?: number | undefined; /** * datasource of the document */ datasource: string; /** * object type of the document */ objectType: string; /** * The id of the document */ id: string; }; /** @internal */ export type DeleteDocumentRequest$Outbound = { version?: number | undefined; datasource: string; objectType: string; id: string; }; /** @internal */ export declare const DeleteDocumentRequest$outboundSchema: z.ZodType; export declare function deleteDocumentRequestToJSON(deleteDocumentRequest: DeleteDocumentRequest): string; //# sourceMappingURL=deletedocumentrequest.d.ts.map