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