/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. * @generated-id: d6b52ad31694 */ import * as z from "zod/v4"; export type UpdateUserProfileRequest = { /** * Display name */ name?: string | undefined; }; /** @internal */ export type UpdateUserProfileRequest$Outbound = { name?: string | undefined; }; /** @internal */ export const UpdateUserProfileRequest$outboundSchema: z.ZodType< UpdateUserProfileRequest$Outbound, UpdateUserProfileRequest > = z.object({ name: z.string().optional(), }); export function updateUserProfileRequestToJSON( updateUserProfileRequest: UpdateUserProfileRequest, ): string { return JSON.stringify( UpdateUserProfileRequest$outboundSchema.parse(updateUserProfileRequest), ); }