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 Wire mechanism */ export type WireWithdrawalScheduleUpdate = { /** * Details of withdrawal schedule transfers */ scheduleDetails?: WithdrawalScheduleDetailsUpdate | undefined; }; /** @internal */ export declare const WireWithdrawalScheduleUpdate$inboundSchema: z.ZodType; /** @internal */ export type WireWithdrawalScheduleUpdate$Outbound = { schedule_details?: WithdrawalScheduleDetailsUpdate$Outbound | undefined; }; /** @internal */ export declare const WireWithdrawalScheduleUpdate$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 WireWithdrawalScheduleUpdate$ { /** @deprecated use `WireWithdrawalScheduleUpdate$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `WireWithdrawalScheduleUpdate$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `WireWithdrawalScheduleUpdate$Outbound` instead. */ type Outbound = WireWithdrawalScheduleUpdate$Outbound; } export declare function wireWithdrawalScheduleUpdateToJSON(wireWithdrawalScheduleUpdate: WireWithdrawalScheduleUpdate): string; export declare function wireWithdrawalScheduleUpdateFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=wirewithdrawalscheduleupdate.d.ts.map