import * as z from "zod/v4-mini"; import { UpdatePaymentRequest, UpdatePaymentRequest$Outbound } from "./update-payment-request.js"; export type UpdatePaymentRequestRequest = { /** * Payment ID */ id: string; /** * Payment configuration */ body: UpdatePaymentRequest; }; /** @internal */ export type UpdatePaymentRequestRequest$Outbound = { id: string; body: UpdatePaymentRequest$Outbound; }; /** @internal */ export declare const UpdatePaymentRequestRequest$outboundSchema: z.ZodMiniType; export declare function updatePaymentRequestRequestToJSON(updatePaymentRequestRequest: UpdatePaymentRequestRequest): string; //# sourceMappingURL=update-payment-op.d.ts.map