import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { WorkspaceDocument } from "./workspacedocument.js"; export type GetWorkspaceDocumentsResponse = { /** * The document summary list. Includes the ID, name, and metadata */ documents?: Array | null | undefined; /** * The number of documents returned in the response. Always equal or less than the `count` of the request */ resultSetSize?: number | null | undefined; /** * Position of the first item in the total results */ startPosition?: number | null | undefined; /** * Position of the last item in the total results */ endPosition?: number | null | undefined; /** * The total number of documents in the workspace applicable to the request regardless of pagination. It may not always be computed */ totalRowCount?: number | null | undefined; }; /** @internal */ export declare const GetWorkspaceDocumentsResponse$inboundSchema: z.ZodType; export declare function getWorkspaceDocumentsResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getworkspacedocumentsresponse.d.ts.map