import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import * as components from "../components/index.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type AchWithdrawalsForceNocAchWithdrawalRequest = { /** * The account id. */ accountId: string; /** * The achWithdrawal id. */ achWithdrawalId: string; forceNocAchWithdrawalRequestCreate: components.ForceNocAchWithdrawalRequestCreate; }; export type AchWithdrawalsForceNocAchWithdrawalResponse = { httpMeta: components.HTTPMetadata; /** * OK */ achWithdrawal?: components.AchWithdrawal | undefined; /** * INVALID_ARGUMENT: The request has an invalid argument. */ status?: components.Status | undefined; }; /** @internal */ export declare const AchWithdrawalsForceNocAchWithdrawalRequest$inboundSchema: z.ZodType; /** @internal */ export type AchWithdrawalsForceNocAchWithdrawalRequest$Outbound = { account_id: string; achWithdrawal_id: string; ForceNocAchWithdrawalRequestCreate: components.ForceNocAchWithdrawalRequestCreate$Outbound; }; /** @internal */ export declare const AchWithdrawalsForceNocAchWithdrawalRequest$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 AchWithdrawalsForceNocAchWithdrawalRequest$ { /** @deprecated use `AchWithdrawalsForceNocAchWithdrawalRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AchWithdrawalsForceNocAchWithdrawalRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AchWithdrawalsForceNocAchWithdrawalRequest$Outbound` instead. */ type Outbound = AchWithdrawalsForceNocAchWithdrawalRequest$Outbound; } export declare function achWithdrawalsForceNocAchWithdrawalRequestToJSON(achWithdrawalsForceNocAchWithdrawalRequest: AchWithdrawalsForceNocAchWithdrawalRequest): string; export declare function achWithdrawalsForceNocAchWithdrawalRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const AchWithdrawalsForceNocAchWithdrawalResponse$inboundSchema: z.ZodType; /** @internal */ export type AchWithdrawalsForceNocAchWithdrawalResponse$Outbound = { HttpMeta: components.HTTPMetadata$Outbound; AchWithdrawal?: components.AchWithdrawal$Outbound | undefined; Status?: components.Status$Outbound | undefined; }; /** @internal */ export declare const AchWithdrawalsForceNocAchWithdrawalResponse$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 AchWithdrawalsForceNocAchWithdrawalResponse$ { /** @deprecated use `AchWithdrawalsForceNocAchWithdrawalResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AchWithdrawalsForceNocAchWithdrawalResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AchWithdrawalsForceNocAchWithdrawalResponse$Outbound` instead. */ type Outbound = AchWithdrawalsForceNocAchWithdrawalResponse$Outbound; } export declare function achWithdrawalsForceNocAchWithdrawalResponseToJSON(achWithdrawalsForceNocAchWithdrawalResponse: AchWithdrawalsForceNocAchWithdrawalResponse): string; export declare function achWithdrawalsForceNocAchWithdrawalResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=achwithdrawalsforcenocachwithdrawal.d.ts.map