import * as z from "zod/v3"; import { WistiaError } from "./wistiaerror.js"; /** * Internal server error */ export type GetMediasInternalServerErrorData = { error?: string | undefined; }; /** * Internal server error */ export declare class GetMediasInternalServerError extends WistiaError { error?: string | undefined; /** The original data that was passed to this error instance. */ data$: GetMediasInternalServerErrorData; constructor(err: GetMediasInternalServerErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** * Unauthorized, invalid or missing token */ export type GetMediasUnauthorizedErrorData = { error?: string | undefined; }; /** * Unauthorized, invalid or missing token */ export declare class GetMediasUnauthorizedError extends WistiaError { error?: string | undefined; /** The original data that was passed to this error instance. */ data$: GetMediasUnauthorizedErrorData; constructor(err: GetMediasUnauthorizedErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** * Bad request */ export type GetMediasBadRequestErrorData = { /** * Error message detailing the reason for the bad request. */ error?: string | undefined; }; /** * Bad request */ export declare class GetMediasBadRequestError 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$: GetMediasBadRequestErrorData; constructor(err: GetMediasBadRequestErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** @internal */ export declare const GetMediasInternalServerError$inboundSchema: z.ZodType; /** @internal */ export declare const GetMediasUnauthorizedError$inboundSchema: z.ZodType; /** @internal */ export declare const GetMediasBadRequestError$inboundSchema: z.ZodType; //# sourceMappingURL=getmedias.d.ts.map