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