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 AchWithdrawalsForceReturnAchWithdrawalRequest = { /** * The account id. */ accountId: string; /** * The achWithdrawal id. */ achWithdrawalId: string; forceReturnAchWithdrawalRequestCreate: components.ForceReturnAchWithdrawalRequestCreate; }; export type AchWithdrawalsForceReturnAchWithdrawalResponse = { httpMeta: components.HTTPMetadata; /** * OK */ achWithdrawal?: components.AchWithdrawal | undefined; /** * INVALID_ARGUMENT: The request has an invalid argument. */ status?: components.Status | undefined; }; /** @internal */ export declare const AchWithdrawalsForceReturnAchWithdrawalRequest$inboundSchema: z.ZodType; /** @internal */ export type AchWithdrawalsForceReturnAchWithdrawalRequest$Outbound = { account_id: string; achWithdrawal_id: string; ForceReturnAchWithdrawalRequestCreate: components.ForceReturnAchWithdrawalRequestCreate$Outbound; }; /** @internal */ export declare const AchWithdrawalsForceReturnAchWithdrawalRequest$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 AchWithdrawalsForceReturnAchWithdrawalRequest$ { /** @deprecated use `AchWithdrawalsForceReturnAchWithdrawalRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AchWithdrawalsForceReturnAchWithdrawalRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AchWithdrawalsForceReturnAchWithdrawalRequest$Outbound` instead. */ type Outbound = AchWithdrawalsForceReturnAchWithdrawalRequest$Outbound; } export declare function achWithdrawalsForceReturnAchWithdrawalRequestToJSON(achWithdrawalsForceReturnAchWithdrawalRequest: AchWithdrawalsForceReturnAchWithdrawalRequest): string; export declare function achWithdrawalsForceReturnAchWithdrawalRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const AchWithdrawalsForceReturnAchWithdrawalResponse$inboundSchema: z.ZodType; /** @internal */ export type AchWithdrawalsForceReturnAchWithdrawalResponse$Outbound = { HttpMeta: components.HTTPMetadata$Outbound; AchWithdrawal?: components.AchWithdrawal$Outbound | undefined; Status?: components.Status$Outbound | undefined; }; /** @internal */ export declare const AchWithdrawalsForceReturnAchWithdrawalResponse$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 AchWithdrawalsForceReturnAchWithdrawalResponse$ { /** @deprecated use `AchWithdrawalsForceReturnAchWithdrawalResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AchWithdrawalsForceReturnAchWithdrawalResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AchWithdrawalsForceReturnAchWithdrawalResponse$Outbound` instead. */ type Outbound = AchWithdrawalsForceReturnAchWithdrawalResponse$Outbound; } export declare function achWithdrawalsForceReturnAchWithdrawalResponseToJSON(achWithdrawalsForceReturnAchWithdrawalResponse: AchWithdrawalsForceReturnAchWithdrawalResponse): string; export declare function achWithdrawalsForceReturnAchWithdrawalResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=achwithdrawalsforcereturnachwithdrawal.d.ts.map