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