import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * Response after confirming a retry payment. */ export type CustomerOrderPaymentConfirmation = { /** * Payment status after confirmation. */ status: string; /** * Client secret for handling additional actions. */ clientSecret?: string | null | undefined; /** * Error message if confirmation failed. */ error?: string | null | undefined; }; /** @internal */ export declare const CustomerOrderPaymentConfirmation$inboundSchema: z.ZodMiniType; export declare function customerOrderPaymentConfirmationFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=customerorderpaymentconfirmation.d.ts.map