import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * Request to cancel an ACH withdrawal transfer schedule */ export type CancelAchWithdrawalScheduleRequestCreate = { /** * A comment as to why the ACH withdrawal schedule is being canceled */ comment?: string | undefined; /** * The name of the ACH withdrawal transfer schedule to cancel */ name: string; }; /** @internal */ export declare const CancelAchWithdrawalScheduleRequestCreate$inboundSchema: z.ZodType; /** @internal */ export type CancelAchWithdrawalScheduleRequestCreate$Outbound = { comment?: string | undefined; name: string; }; /** @internal */ export declare const CancelAchWithdrawalScheduleRequestCreate$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 CancelAchWithdrawalScheduleRequestCreate$ { /** @deprecated use `CancelAchWithdrawalScheduleRequestCreate$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `CancelAchWithdrawalScheduleRequestCreate$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `CancelAchWithdrawalScheduleRequestCreate$Outbound` instead. */ type Outbound = CancelAchWithdrawalScheduleRequestCreate$Outbound; } export declare function cancelAchWithdrawalScheduleRequestCreateToJSON(cancelAchWithdrawalScheduleRequestCreate: CancelAchWithdrawalScheduleRequestCreate): string; export declare function cancelAchWithdrawalScheduleRequestCreateFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=cancelachwithdrawalschedulerequestcreate.d.ts.map