/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. * @generated-id: ffe93fb903c6 */ import * as z from "zod/v4"; import { safeParse } from "../../lib/schemas.js"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type BatchError = { message: string; count: number; }; /** @internal */ export const BatchError$inboundSchema: z.ZodType = z .object({ message: z.string(), count: z.int().default(1), }); export function batchErrorFromJSON( jsonString: string, ): SafeParseResult { return safeParse( jsonString, (x) => BatchError$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'BatchError' from JSON`, ); }