import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { UploadLink, UploadLink$Outbound } from "./uploadlink.js"; /** * List of signed links to upload documents. */ export type BatchCreateUploadLinksResponse = { /** * The list of signed links used to upload documents */ uploadLink?: Array | undefined; }; /** @internal */ export declare const BatchCreateUploadLinksResponse$inboundSchema: z.ZodType; /** @internal */ export type BatchCreateUploadLinksResponse$Outbound = { upload_link?: Array | undefined; }; /** @internal */ export declare const BatchCreateUploadLinksResponse$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace BatchCreateUploadLinksResponse$ { /** @deprecated use `BatchCreateUploadLinksResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `BatchCreateUploadLinksResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `BatchCreateUploadLinksResponse$Outbound` instead. */ type Outbound = BatchCreateUploadLinksResponse$Outbound; } export declare function batchCreateUploadLinksResponseToJSON(batchCreateUploadLinksResponse: BatchCreateUploadLinksResponse): string; export declare function batchCreateUploadLinksResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=batchcreateuploadlinksresponse.d.ts.map