/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import * as z from "zod/v3"; export type UpdateContextRequestDto = { /** * Custom data to associate with this context. Replaces existing data. */ data: { [k: string]: any }; }; /** @internal */ export type UpdateContextRequestDto$Outbound = { data: { [k: string]: any }; }; /** @internal */ export const UpdateContextRequestDto$outboundSchema: z.ZodType< UpdateContextRequestDto$Outbound, z.ZodTypeDef, UpdateContextRequestDto > = z.object({ data: z.record(z.any()), }); export function updateContextRequestDtoToJSON( updateContextRequestDto: UpdateContextRequestDto, ): string { return JSON.stringify( UpdateContextRequestDto$outboundSchema.parse(updateContextRequestDto), ); }