import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { PaymentMethodsBankAccount, PaymentMethodsBankAccount$Outbound } from "./paymentmethodsbankaccount.js"; export type AchDebitCollectPaymentMethod = { /** * ID of the payment method. */ paymentMethodID: string; paymentMethodType: "ach-debit-collect"; /** * A bank account as contained within a payment method. */ bankAccount: PaymentMethodsBankAccount; }; /** @internal */ export declare const AchDebitCollectPaymentMethod$inboundSchema: z.ZodType; /** @internal */ export type AchDebitCollectPaymentMethod$Outbound = { paymentMethodID: string; paymentMethodType: "ach-debit-collect"; bankAccount: PaymentMethodsBankAccount$Outbound; }; /** @internal */ export declare const AchDebitCollectPaymentMethod$outboundSchema: z.ZodType; export declare function achDebitCollectPaymentMethodToJSON(achDebitCollectPaymentMethod: AchDebitCollectPaymentMethod): string; export declare function achDebitCollectPaymentMethodFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=achdebitcollectpaymentmethod.d.ts.map