/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import * as z from "zod/v4-mini"; export type MetersGetRequest = { /** * The meter ID. */ id: string; }; /** @internal */ export type MetersGetRequest$Outbound = { id: string; }; /** @internal */ export const MetersGetRequest$outboundSchema: z.ZodMiniType< MetersGetRequest$Outbound, MetersGetRequest > = z.object({ id: z.string(), }); export function metersGetRequestToJSON( metersGetRequest: MetersGetRequest, ): string { return JSON.stringify( MetersGetRequest$outboundSchema.parse(metersGetRequest), ); }