import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { PassThroughBody, PassThroughBody$Outbound } from "./passthroughbody.js"; export type CopyFolderRequest = { /** * The name of the folder. */ name?: string | undefined; /** * The parent folder to create the new file within. This can be an ID or a path depending on the downstream folder. Please see the connector section below to see downstream specific gotchas. */ parentFolderId: string; /** * The pass_through property allows passing service-specific, custom data or structured modifications in request body when creating or updating resources. */ passThrough?: Array | undefined; }; /** @internal */ export declare const CopyFolderRequest$inboundSchema: z.ZodType; /** @internal */ export type CopyFolderRequest$Outbound = { name?: string | undefined; parent_folder_id: string; pass_through?: Array | undefined; }; /** @internal */ export declare const CopyFolderRequest$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 CopyFolderRequest$ { /** @deprecated use `CopyFolderRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `CopyFolderRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `CopyFolderRequest$Outbound` instead. */ type Outbound = CopyFolderRequest$Outbound; } export declare function copyFolderRequestToJSON(copyFolderRequest: CopyFolderRequest): string; export declare function copyFolderRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=copyfolderrequest.d.ts.map