import * as z from "zod/v3"; import { WistiaError } from "./wistiaerror.js"; /** * Internal server error */ export type PostFoldersFolderIdSubfoldersInternalServerErrorData = { error?: string | undefined; }; /** * Internal server error */ export declare class PostFoldersFolderIdSubfoldersInternalServerError extends WistiaError { error?: string | undefined; /** The original data that was passed to this error instance. */ data$: PostFoldersFolderIdSubfoldersInternalServerErrorData; constructor(err: PostFoldersFolderIdSubfoldersInternalServerErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** * Folder not found */ export type PostFoldersFolderIdSubfoldersNotFoundErrorData = { error?: string | undefined; }; /** * Folder not found */ export declare class PostFoldersFolderIdSubfoldersNotFoundError extends WistiaError { error?: string | undefined; /** The original data that was passed to this error instance. */ data$: PostFoldersFolderIdSubfoldersNotFoundErrorData; constructor(err: PostFoldersFolderIdSubfoldersNotFoundErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** * Forbidden, token is valid but account does not have access to feature */ export type PostFoldersFolderIdSubfoldersForbiddenErrorData = { error?: string | undefined; }; /** * Forbidden, token is valid but account does not have access to feature */ export declare class PostFoldersFolderIdSubfoldersForbiddenError extends WistiaError { error?: string | undefined; /** The original data that was passed to this error instance. */ data$: PostFoldersFolderIdSubfoldersForbiddenErrorData; constructor(err: PostFoldersFolderIdSubfoldersForbiddenErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** * Unauthorized, invalid or missing token */ export type PostFoldersFolderIdSubfoldersUnauthorizedErrorData = { error?: string | undefined; }; /** * Unauthorized, invalid or missing token */ export declare class PostFoldersFolderIdSubfoldersUnauthorizedError extends WistiaError { error?: string | undefined; /** The original data that was passed to this error instance. */ data$: PostFoldersFolderIdSubfoldersUnauthorizedErrorData; constructor(err: PostFoldersFolderIdSubfoldersUnauthorizedErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** @internal */ export declare const PostFoldersFolderIdSubfoldersInternalServerError$inboundSchema: z.ZodType; /** @internal */ export declare const PostFoldersFolderIdSubfoldersNotFoundError$inboundSchema: z.ZodType; /** @internal */ export declare const PostFoldersFolderIdSubfoldersForbiddenError$inboundSchema: z.ZodType; /** @internal */ export declare const PostFoldersFolderIdSubfoldersUnauthorizedError$inboundSchema: z.ZodType; //# sourceMappingURL=postfoldersfolderidsubfolders.d.ts.map