/** * This file was auto-generated by Fern from our API Definition. */ import * as serializers from "../index"; import * as MixedbreadAI from "../../api/index"; import * as core from "../../core"; import { MxbaiApiErrorDetails } from "./MxbaiApiErrorDetails"; export const NotFoundErrorBody: core.serialization.ObjectSchema< serializers.NotFoundErrorBody.Raw, MixedbreadAI.NotFoundErrorBody > = core.serialization.object({ type: core.serialization.stringLiteral("not_found_error").optional(), url: core.serialization.string().optional(), message: core.serialization.string().optional(), details: MxbaiApiErrorDetails.optional(), }); export declare namespace NotFoundErrorBody { interface Raw { type?: "not_found_error" | null; url?: string | null; message?: string | null; details?: MxbaiApiErrorDetails.Raw | null; } }