/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import * as z from "zod/v3"; import { safeParse } from "../../lib/schemas.js"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type Sip = { code?: number | undefined; /** * Server software reported by service */ server?: string | undefined; status?: string | undefined; /** * SIP version */ version?: string | undefined; }; /** @internal */ export const Sip$inboundSchema: z.ZodType = z .object({ code: z.number().int().optional(), server: z.string().optional(), status: z.string().optional(), version: z.string().optional(), }); export function sipFromJSON( jsonString: string, ): SafeParseResult { return safeParse( jsonString, (x) => Sip$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'Sip' from JSON`, ); }