/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. * @generated-id: d08af46a9abd */ import * as z from "zod"; import { PersonStatus, PersonStatus$zodSchema } from "./personstatus.js"; export type UpdatePersonRequest = { name?: string | undefined; status?: PersonStatus | undefined; thumbnail_asset_id?: string | undefined; }; export const UpdatePersonRequest$zodSchema: z.ZodType = z .object({ name: z.string().optional().describe( "The display name for the person. Maximum 255 characters.", ), status: PersonStatus$zodSchema.optional().describe( "The status of a person.", ), thumbnail_asset_id: z.string().optional().describe( "The external ID of an asset containing this person's face to use as the thumbnail.", ), });