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