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