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 AchCreditStandardPaymentMethod = { /** * ID of the payment method. */ paymentMethodID: string; paymentMethodType: "ach-credit-standard"; /** * A bank account as contained within a payment method. */ bankAccount: PaymentMethodsBankAccount; }; /** @internal */ export declare const AchCreditStandardPaymentMethod$inboundSchema: z.ZodType; /** @internal */ export type AchCreditStandardPaymentMethod$Outbound = { paymentMethodID: string; paymentMethodType: "ach-credit-standard"; bankAccount: PaymentMethodsBankAccount$Outbound; }; /** @internal */ export declare const AchCreditStandardPaymentMethod$outboundSchema: z.ZodType; export declare function achCreditStandardPaymentMethodToJSON(achCreditStandardPaymentMethod: AchCreditStandardPaymentMethod): string; export declare function achCreditStandardPaymentMethodFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=achcreditstandardpaymentmethod.d.ts.map