import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { WithdrawalScheduleDetailsUpdate, WithdrawalScheduleDetailsUpdate$Outbound } from "./withdrawalscheduledetailsupdate.js"; /** * A withdrawal transfer schedule using the ACH mechanism */ export type AchWithdrawalScheduleUpdate = { /** * Details of withdrawal schedule transfers */ scheduleDetails?: WithdrawalScheduleDetailsUpdate | undefined; }; /** @internal */ export declare const AchWithdrawalScheduleUpdate$inboundSchema: z.ZodType; /** @internal */ export type AchWithdrawalScheduleUpdate$Outbound = { schedule_details?: WithdrawalScheduleDetailsUpdate$Outbound | undefined; }; /** @internal */ export declare const AchWithdrawalScheduleUpdate$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 AchWithdrawalScheduleUpdate$ { /** @deprecated use `AchWithdrawalScheduleUpdate$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AchWithdrawalScheduleUpdate$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AchWithdrawalScheduleUpdate$Outbound` instead. */ type Outbound = AchWithdrawalScheduleUpdate$Outbound; } export declare function achWithdrawalScheduleUpdateToJSON(achWithdrawalScheduleUpdate: AchWithdrawalScheduleUpdate): string; export declare function achWithdrawalScheduleUpdateFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=achwithdrawalscheduleupdate.d.ts.map