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