import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { CreateTransferACHAddendaRecord, CreateTransferACHAddendaRecord$Outbound } from "./createtransferachaddendarecord.js"; import { DebitHoldPeriod } from "./debitholdperiod.js"; import { SECCode } from "./seccode.js"; export type CreateTransferSourceACH = { /** * An optional override of the default NACHA company entry description for a transfer. */ companyEntryDescription?: string | undefined; /** * An optional override of the default NACHA company name for a transfer. */ originatingCompanyName?: string | undefined; /** * An optional override of your default ACH hold period in banking days. The hold period must be longer than or equal to your default setting. */ debitHoldPeriod?: DebitHoldPeriod | undefined; /** * Code used to identify the ACH authorization method. */ secCode?: SECCode | undefined; addenda?: Array | undefined; }; /** @internal */ export declare const CreateTransferSourceACH$inboundSchema: z.ZodType; /** @internal */ export type CreateTransferSourceACH$Outbound = { companyEntryDescription?: string | undefined; originatingCompanyName?: string | undefined; debitHoldPeriod?: string | undefined; secCode?: string | undefined; addenda?: Array | undefined; }; /** @internal */ export declare const CreateTransferSourceACH$outboundSchema: z.ZodType; export declare function createTransferSourceACHToJSON(createTransferSourceACH: CreateTransferSourceACH): string; export declare function createTransferSourceACHFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=createtransfersourceach.d.ts.map