import * as z from "zod/v3"; import { WistiaError } from "./wistiaerror.js"; /** * Analytics service is temporarily unavailable */ export type GetAnalyticsMediasMediaIdEmbedLocationsServiceUnavailableErrorData = { error?: string | undefined; }; /** * Analytics service is temporarily unavailable */ export declare class GetAnalyticsMediasMediaIdEmbedLocationsServiceUnavailableError extends WistiaError { error?: string | undefined; /** The original data that was passed to this error instance. */ data$: GetAnalyticsMediasMediaIdEmbedLocationsServiceUnavailableErrorData; constructor(err: GetAnalyticsMediasMediaIdEmbedLocationsServiceUnavailableErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** * Internal server error */ export type GetAnalyticsMediasMediaIdEmbedLocationsInternalServerErrorData = { error?: string | undefined; }; /** * Internal server error */ export declare class GetAnalyticsMediasMediaIdEmbedLocationsInternalServerError extends WistiaError { error?: string | undefined; /** The original data that was passed to this error instance. */ data$: GetAnalyticsMediasMediaIdEmbedLocationsInternalServerErrorData; constructor(err: GetAnalyticsMediasMediaIdEmbedLocationsInternalServerErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** * Forbidden, token is valid but account does not have access to feature */ export type GetAnalyticsMediasMediaIdEmbedLocationsForbiddenErrorData = { error?: string | undefined; }; /** * Forbidden, token is valid but account does not have access to feature */ export declare class GetAnalyticsMediasMediaIdEmbedLocationsForbiddenError extends WistiaError { error?: string | undefined; /** The original data that was passed to this error instance. */ data$: GetAnalyticsMediasMediaIdEmbedLocationsForbiddenErrorData; constructor(err: GetAnalyticsMediasMediaIdEmbedLocationsForbiddenErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** * Unauthorized, invalid or missing token */ export type GetAnalyticsMediasMediaIdEmbedLocationsUnauthorizedErrorData = { error?: string | undefined; }; /** * Unauthorized, invalid or missing token */ export declare class GetAnalyticsMediasMediaIdEmbedLocationsUnauthorizedError extends WistiaError { error?: string | undefined; /** The original data that was passed to this error instance. */ data$: GetAnalyticsMediasMediaIdEmbedLocationsUnauthorizedErrorData; constructor(err: GetAnalyticsMediasMediaIdEmbedLocationsUnauthorizedErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** * Bad request */ export type GetAnalyticsMediasMediaIdEmbedLocationsBadRequestErrorData = { /** * Error message detailing the reason for the bad request. */ error?: string | undefined; }; /** * Bad request */ export declare class GetAnalyticsMediasMediaIdEmbedLocationsBadRequestError 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$: GetAnalyticsMediasMediaIdEmbedLocationsBadRequestErrorData; constructor(err: GetAnalyticsMediasMediaIdEmbedLocationsBadRequestErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** @internal */ export declare const GetAnalyticsMediasMediaIdEmbedLocationsServiceUnavailableError$inboundSchema: z.ZodType; /** @internal */ export declare const GetAnalyticsMediasMediaIdEmbedLocationsInternalServerError$inboundSchema: z.ZodType; /** @internal */ export declare const GetAnalyticsMediasMediaIdEmbedLocationsForbiddenError$inboundSchema: z.ZodType; /** @internal */ export declare const GetAnalyticsMediasMediaIdEmbedLocationsUnauthorizedError$inboundSchema: z.ZodType; /** @internal */ export declare const GetAnalyticsMediasMediaIdEmbedLocationsBadRequestError$inboundSchema: z.ZodType; //# sourceMappingURL=getanalyticsmediasmediaidembedlocations.d.ts.map