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