import * as z from "zod/v4-mini"; import { PaymentStatus } from "./payment-status.js"; export type UpdatePaymentStatusRequest = { /** * amount is the optional payment amount to record */ amount?: string | undefined; paymentStatus: PaymentStatus; }; /** @internal */ export type UpdatePaymentStatusRequest$Outbound = { amount?: string | undefined; payment_status: string; }; /** @internal */ export declare const UpdatePaymentStatusRequest$outboundSchema: z.ZodMiniType; export declare function updatePaymentStatusRequestToJSON(updatePaymentStatusRequest: UpdatePaymentStatusRequest): string; //# sourceMappingURL=update-payment-status-request.d.ts.map