/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. * @generated-id: 360b40d411aa */ import * as z from "zod"; import { PersonStatus, PersonStatus$zodSchema } from "./personstatus.js"; export type UpdatePersonResponse = { person_id?: string | undefined; name?: string | undefined; status?: PersonStatus | undefined; }; export const UpdatePersonResponse$zodSchema: z.ZodType = z .object({ name: z.string().optional().describe("The display name of the person."), person_id: z.string().optional().describe( "The unique identifier of the person.", ), status: PersonStatus$zodSchema.optional().describe( "The status of a person.", ), });