import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { DepositScheduleDetailsUpdate, DepositScheduleDetailsUpdate$Outbound } from "./depositscheduledetailsupdate.js"; /** * A deposit transfer schedule using the ACH mechanism */ export type AchDepositScheduleUpdate = { /** * Details of deposit schedule transfers */ scheduleDetails?: DepositScheduleDetailsUpdate | undefined; }; /** @internal */ export declare const AchDepositScheduleUpdate$inboundSchema: z.ZodType; /** @internal */ export type AchDepositScheduleUpdate$Outbound = { schedule_details?: DepositScheduleDetailsUpdate$Outbound | undefined; }; /** @internal */ export declare const AchDepositScheduleUpdate$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace AchDepositScheduleUpdate$ { /** @deprecated use `AchDepositScheduleUpdate$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AchDepositScheduleUpdate$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AchDepositScheduleUpdate$Outbound` instead. */ type Outbound = AchDepositScheduleUpdate$Outbound; } export declare function achDepositScheduleUpdateToJSON(achDepositScheduleUpdate: AchDepositScheduleUpdate): string; export declare function achDepositScheduleUpdateFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=achdepositscheduleupdate.d.ts.map