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 UpdateFolderRequest = { /** * The name of the folder. */ name?: string | undefined; /** * Optional description of the folder. */ description?: 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 | undefined; /** * 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 UpdateFolderRequest$inboundSchema: z.ZodType; /** @internal */ export type UpdateFolderRequest$Outbound = { name?: string | undefined; description?: string | undefined; parent_folder_id?: string | undefined; pass_through?: Array | undefined; }; /** @internal */ export declare const UpdateFolderRequest$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 UpdateFolderRequest$ { /** @deprecated use `UpdateFolderRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `UpdateFolderRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `UpdateFolderRequest$Outbound` instead. */ type Outbound = UpdateFolderRequest$Outbound; } export declare function updateFolderRequestToJSON(updateFolderRequest: UpdateFolderRequest): string; export declare function updateFolderRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=updatefolderrequest.d.ts.map