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