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 AchWithdrawalsGetAchWithdrawalRequest = { /** * The account id. */ accountId: string; /** * The achWithdrawal id. */ achWithdrawalId: string; }; export type AchWithdrawalsGetAchWithdrawalResponse = { httpMeta: components.HTTPMetadata; /** * OK */ achWithdrawal?: components.AchWithdrawal | undefined; /** * INVALID_ARGUMENT: The request has an invalid argument. */ status?: components.Status | undefined; }; /** @internal */ export declare const AchWithdrawalsGetAchWithdrawalRequest$inboundSchema: z.ZodType; /** @internal */ export type AchWithdrawalsGetAchWithdrawalRequest$Outbound = { account_id: string; achWithdrawal_id: string; }; /** @internal */ export declare const AchWithdrawalsGetAchWithdrawalRequest$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 AchWithdrawalsGetAchWithdrawalRequest$ { /** @deprecated use `AchWithdrawalsGetAchWithdrawalRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AchWithdrawalsGetAchWithdrawalRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AchWithdrawalsGetAchWithdrawalRequest$Outbound` instead. */ type Outbound = AchWithdrawalsGetAchWithdrawalRequest$Outbound; } export declare function achWithdrawalsGetAchWithdrawalRequestToJSON(achWithdrawalsGetAchWithdrawalRequest: AchWithdrawalsGetAchWithdrawalRequest): string; export declare function achWithdrawalsGetAchWithdrawalRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const AchWithdrawalsGetAchWithdrawalResponse$inboundSchema: z.ZodType; /** @internal */ export type AchWithdrawalsGetAchWithdrawalResponse$Outbound = { HttpMeta: components.HTTPMetadata$Outbound; AchWithdrawal?: components.AchWithdrawal$Outbound | undefined; Status?: components.Status$Outbound | undefined; }; /** @internal */ export declare const AchWithdrawalsGetAchWithdrawalResponse$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 AchWithdrawalsGetAchWithdrawalResponse$ { /** @deprecated use `AchWithdrawalsGetAchWithdrawalResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AchWithdrawalsGetAchWithdrawalResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AchWithdrawalsGetAchWithdrawalResponse$Outbound` instead. */ type Outbound = AchWithdrawalsGetAchWithdrawalResponse$Outbound; } export declare function achWithdrawalsGetAchWithdrawalResponseToJSON(achWithdrawalsGetAchWithdrawalResponse: AchWithdrawalsGetAchWithdrawalResponse): string; export declare function achWithdrawalsGetAchWithdrawalResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=achwithdrawalsgetachwithdrawal.d.ts.map