import * as z from "zod/v3"; import { WistiaError } from "./wistiaerror.js"; /** * Internal server error */ export type PutFoldersFolderIdSubfoldersSubfolderIdInternalServerErrorData = { error?: string | undefined; }; /** * Internal server error */ export declare class PutFoldersFolderIdSubfoldersSubfolderIdInternalServerError extends WistiaError { error?: string | undefined; /** The original data that was passed to this error instance. */ data$: PutFoldersFolderIdSubfoldersSubfolderIdInternalServerErrorData; constructor(err: PutFoldersFolderIdSubfoldersSubfolderIdInternalServerErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** * Folder or subfolder not found */ export type PutFoldersFolderIdSubfoldersSubfolderIdNotFoundErrorData = { error?: string | undefined; }; /** * Folder or subfolder not found */ export declare class PutFoldersFolderIdSubfoldersSubfolderIdNotFoundError extends WistiaError { error?: string | undefined; /** The original data that was passed to this error instance. */ data$: PutFoldersFolderIdSubfoldersSubfolderIdNotFoundErrorData; constructor(err: PutFoldersFolderIdSubfoldersSubfolderIdNotFoundErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** * Unauthorized, invalid or missing token */ export type PutFoldersFolderIdSubfoldersSubfolderIdUnauthorizedErrorData = { error?: string | undefined; }; /** * Unauthorized, invalid or missing token */ export declare class PutFoldersFolderIdSubfoldersSubfolderIdUnauthorizedError extends WistiaError { error?: string | undefined; /** The original data that was passed to this error instance. */ data$: PutFoldersFolderIdSubfoldersSubfolderIdUnauthorizedErrorData; constructor(err: PutFoldersFolderIdSubfoldersSubfolderIdUnauthorizedErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** @internal */ export declare const PutFoldersFolderIdSubfoldersSubfolderIdInternalServerError$inboundSchema: z.ZodType; /** @internal */ export declare const PutFoldersFolderIdSubfoldersSubfolderIdNotFoundError$inboundSchema: z.ZodType; /** @internal */ export declare const PutFoldersFolderIdSubfoldersSubfolderIdUnauthorizedError$inboundSchema: z.ZodType; //# sourceMappingURL=putfoldersfolderidsubfolderssubfolderid.d.ts.map