import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { AchPaymentMethod } from "./achpaymentmethod.js"; import { CardPaymentMethod } from "./cardpaymentmethod.js"; import { LinkPaymentMethod } from "./linkpaymentmethod.js"; /** * Make all properties in T optional */ export type PaymentMethod = { card?: CardPaymentMethod | undefined; ach?: AchPaymentMethod | undefined; link?: LinkPaymentMethod | undefined; }; /** @internal */ export declare const PaymentMethod$inboundSchema: z.ZodType; export declare function paymentMethodFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=paymentmethod.d.ts.map