import * as z from "zod/v3"; import { WistiaError } from "./wistiaerror.js"; /** * Internal server error */ export type GetFoldersInternalServerErrorData = { error?: string | undefined; }; /** * Internal server error */ export declare class GetFoldersInternalServerError extends WistiaError { error?: string | undefined; /** The original data that was passed to this error instance. */ data$: GetFoldersInternalServerErrorData; constructor(err: GetFoldersInternalServerErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** * Unauthorized, invalid or missing token */ export type GetFoldersUnauthorizedErrorData = { error?: string | undefined; }; /** * Unauthorized, invalid or missing token */ export declare class GetFoldersUnauthorizedError extends WistiaError { error?: string | undefined; /** The original data that was passed to this error instance. */ data$: GetFoldersUnauthorizedErrorData; constructor(err: GetFoldersUnauthorizedErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** * Bad request */ export type GetFoldersBadRequestErrorData = { /** * Error message detailing the reason for the bad request. */ error?: string | undefined; }; /** * Bad request */ export declare class GetFoldersBadRequestError extends WistiaError { /** * Error message detailing the reason for the bad request. */ error?: string | undefined; /** The original data that was passed to this error instance. */ data$: GetFoldersBadRequestErrorData; constructor(err: GetFoldersBadRequestErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** @internal */ export declare const GetFoldersInternalServerError$inboundSchema: z.ZodType; /** @internal */ export declare const GetFoldersUnauthorizedError$inboundSchema: z.ZodType; /** @internal */ export declare const GetFoldersBadRequestError$inboundSchema: z.ZodType; //# sourceMappingURL=getfolders.d.ts.map