import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "./sdk-validation-error.js"; export type PaymentAttemptResponse = { attemptNumber?: number | undefined; createdAt?: Date | undefined; createdBy?: string | undefined; errorMessage?: string | undefined; id?: string | undefined; metadata?: { [k: string]: string; } | undefined; paymentId?: string | undefined; tenantId?: string | undefined; updatedAt?: Date | undefined; updatedBy?: string | undefined; }; /** @internal */ export declare const PaymentAttemptResponse$inboundSchema: z.ZodMiniType; export declare function paymentAttemptResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=payment-attempt-response.d.ts.map