import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type ACHPaymentSettings = { /** * The description that shows up on ACH transactions. This will default to the account's display name on account creation. */ companyName: string; }; /** @internal */ export declare const ACHPaymentSettings$inboundSchema: z.ZodType; /** @internal */ export type ACHPaymentSettings$Outbound = { companyName: string; }; /** @internal */ export declare const ACHPaymentSettings$outboundSchema: z.ZodType; export declare function achPaymentSettingsToJSON(achPaymentSettings: ACHPaymentSettings): string; export declare function achPaymentSettingsFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=achpaymentsettings.d.ts.map