/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import * as z from "zod/v4-mini"; export type ResourceProperties = { url: string; description?: string | undefined; mimeType?: string | undefined; }; /** @internal */ export type ResourceProperties$Outbound = { url: string; description?: string | undefined; mimeType?: string | undefined; }; /** @internal */ export const ResourceProperties$outboundSchema: z.ZodMiniType< ResourceProperties$Outbound, ResourceProperties > = z.object({ url: z.string(), description: z.optional(z.string()), mimeType: z.optional(z.string()), }); export function resourcePropertiesToJSON( resourceProperties: ResourceProperties, ): string { return JSON.stringify( ResourceProperties$outboundSchema.parse(resourceProperties), ); }