/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. * @generated-id: 114d3fe75a20 */ import * as z from "zod/v3"; export type StructuredTextMutableProperties = { text: string; }; /** @internal */ export type StructuredTextMutableProperties$Outbound = { text: string; }; /** @internal */ export const StructuredTextMutableProperties$outboundSchema: z.ZodType< StructuredTextMutableProperties$Outbound, z.ZodTypeDef, StructuredTextMutableProperties > = z.object({ text: z.string(), }); export function structuredTextMutablePropertiesToJSON( structuredTextMutableProperties: StructuredTextMutableProperties, ): string { return JSON.stringify( StructuredTextMutableProperties$outboundSchema.parse( structuredTextMutableProperties, ), ); }