import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { ACHException, ACHException$Outbound } from "./achexception.js"; import { ACHTransactionStatus } from "./achtransactionstatus.js"; import { DebitHoldPeriod } from "./debitholdperiod.js"; import { SECCode } from "./seccode.js"; import { TransferACHAddendaRecord, TransferACHAddendaRecord$Outbound } from "./transferachaddendarecord.js"; /** * ACH specific details about the transaction. */ export type ACHTransactionDetails = { /** * Status of a transaction within the ACH lifecycle. */ status?: ACHTransactionStatus | undefined; traceNumber?: string | undefined; return?: ACHException | undefined; correction?: ACHException | undefined; /** * 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; /** * Code used to identify the ACH authorization method. */ secCode?: SECCode | undefined; canceledOn?: Date | undefined; initiatedOn?: Date | undefined; originatedOn?: Date | undefined; correctedOn?: Date | undefined; returnedOn?: Date | undefined; failedOn?: Date | undefined; completedOn?: Date | 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; addenda?: Array | undefined; }; /** @internal */ export declare const ACHTransactionDetails$inboundSchema: z.ZodType; /** @internal */ export type ACHTransactionDetails$Outbound = { status?: string | undefined; traceNumber?: string | undefined; return?: ACHException$Outbound | undefined; correction?: ACHException$Outbound | undefined; companyEntryDescription?: string | undefined; originatingCompanyName?: string | undefined; secCode?: string | undefined; canceledOn?: string | undefined; initiatedOn?: string | undefined; originatedOn?: string | undefined; correctedOn?: string | undefined; returnedOn?: string | undefined; failedOn?: string | undefined; completedOn?: string | undefined; debitHoldPeriod?: string | undefined; addenda?: Array | undefined; }; /** @internal */ export declare const ACHTransactionDetails$outboundSchema: z.ZodType; export declare function achTransactionDetailsToJSON(achTransactionDetails: ACHTransactionDetails): string; export declare function achTransactionDetailsFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=achtransactiondetails.d.ts.map