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