import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * Payment status for an order. */ export type CustomerOrderPaymentStatus = { /** * Current payment status. */ status: string; /** * Error message if payment failed. */ error?: string | null | undefined; }; /** @internal */ export declare const CustomerOrderPaymentStatus$inboundSchema: z.ZodMiniType; export declare function customerOrderPaymentStatusFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=customerorderpaymentstatus.d.ts.map