/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import * as z from "zod/v3"; export type UpdateTopicRequestDto = { /** * The display name for the topic */ name: string; }; /** @internal */ export type UpdateTopicRequestDto$Outbound = { name: string; }; /** @internal */ export const UpdateTopicRequestDto$outboundSchema: z.ZodType< UpdateTopicRequestDto$Outbound, z.ZodTypeDef, UpdateTopicRequestDto > = z.object({ name: z.string(), }); export function updateTopicRequestDtoToJSON( updateTopicRequestDto: UpdateTopicRequestDto, ): string { return JSON.stringify( UpdateTopicRequestDto$outboundSchema.parse(updateTopicRequestDto), ); }