import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { NachaNocCreate, NachaNocCreate$Outbound } from "./nachanoccreate.js"; /** * Request to force a Nacha notice of change (NOC) on a completed ACH withdrawal. FOR TESTING ONLY! */ export type ForceNocAchWithdrawalRequestCreate = { /** * A notice of change (NOC) on an ACH transfer from the Nacha network. */ nachaNoc: NachaNocCreate; /** * The name of the ACH withdrawal to force a Nacha NOC on. */ name: string; }; /** @internal */ export declare const ForceNocAchWithdrawalRequestCreate$inboundSchema: z.ZodType; /** @internal */ export type ForceNocAchWithdrawalRequestCreate$Outbound = { nacha_noc: NachaNocCreate$Outbound; name: string; }; /** @internal */ export declare const ForceNocAchWithdrawalRequestCreate$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 ForceNocAchWithdrawalRequestCreate$ { /** @deprecated use `ForceNocAchWithdrawalRequestCreate$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ForceNocAchWithdrawalRequestCreate$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ForceNocAchWithdrawalRequestCreate$Outbound` instead. */ type Outbound = ForceNocAchWithdrawalRequestCreate$Outbound; } export declare function forceNocAchWithdrawalRequestCreateToJSON(forceNocAchWithdrawalRequestCreate: ForceNocAchWithdrawalRequestCreate): string; export declare function forceNocAchWithdrawalRequestCreateFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=forcenocachwithdrawalrequestcreate.d.ts.map