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