import * as z from "zod/v3"; import { WistiaError } from "./wistiaerror.js"; /** * Internal server error */ export type PutFoldersIdInternalServerErrorData = { error?: string | undefined; }; /** * Internal server error */ export declare class PutFoldersIdInternalServerError extends WistiaError { error?: string | undefined; /** The original data that was passed to this error instance. */ data$: PutFoldersIdInternalServerErrorData; constructor(err: PutFoldersIdInternalServerErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** * Resource not found */ export type PutFoldersIdNotFoundErrorData = { error?: string | undefined; }; /** * Resource not found */ export declare class PutFoldersIdNotFoundError extends WistiaError { error?: string | undefined; /** The original data that was passed to this error instance. */ data$: PutFoldersIdNotFoundErrorData; constructor(err: PutFoldersIdNotFoundErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** * Forbidden, token is valid but account does not have access to feature */ export type PutFoldersIdForbiddenErrorData = { error?: string | undefined; }; /** * Forbidden, token is valid but account does not have access to feature */ export declare class PutFoldersIdForbiddenError extends WistiaError { error?: string | undefined; /** The original data that was passed to this error instance. */ data$: PutFoldersIdForbiddenErrorData; constructor(err: PutFoldersIdForbiddenErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** * Unauthorized, invalid or missing token */ export type PutFoldersIdUnauthorizedErrorData = { error?: string | undefined; }; /** * Unauthorized, invalid or missing token */ export declare class PutFoldersIdUnauthorizedError extends WistiaError { error?: string | undefined; /** The original data that was passed to this error instance. */ data$: PutFoldersIdUnauthorizedErrorData; constructor(err: PutFoldersIdUnauthorizedErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** @internal */ export declare const PutFoldersIdInternalServerError$inboundSchema: z.ZodType; /** @internal */ export declare const PutFoldersIdNotFoundError$inboundSchema: z.ZodType; /** @internal */ export declare const PutFoldersIdForbiddenError$inboundSchema: z.ZodType; /** @internal */ export declare const PutFoldersIdUnauthorizedError$inboundSchema: z.ZodType; //# sourceMappingURL=putfoldersid.d.ts.map