import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * The payment method used to push or pull funds to a bank account. * * @remarks * The push payment method can only be ach-credit-standard, ach-credit-same-day, or rtp-credit. The pull payment method can only be ach-debit-fund. */ export type SweepConfigPaymentMethod = { /** * ID of the payment method. */ paymentMethodID: string; disabledOn?: Date | undefined; }; /** @internal */ export declare const SweepConfigPaymentMethod$inboundSchema: z.ZodType; /** @internal */ export type SweepConfigPaymentMethod$Outbound = { paymentMethodID: string; disabledOn?: string | undefined; }; /** @internal */ export declare const SweepConfigPaymentMethod$outboundSchema: z.ZodType; export declare function sweepConfigPaymentMethodToJSON(sweepConfigPaymentMethod: SweepConfigPaymentMethod): string; export declare function sweepConfigPaymentMethodFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=sweepconfigpaymentmethod.d.ts.map