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