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 WireWithdrawalsGetWireWithdrawalRequest = { /** * The account id. */ accountId: string; /** * The wireWithdrawal id. */ wireWithdrawalId: string; }; export type WireWithdrawalsGetWireWithdrawalResponse = { httpMeta: components.HTTPMetadata; /** * OK */ wireWithdrawal?: components.WireWithdrawal | undefined; /** * INVALID_ARGUMENT: The request has an invalid argument. */ status?: components.Status | undefined; }; /** @internal */ export declare const WireWithdrawalsGetWireWithdrawalRequest$inboundSchema: z.ZodType; /** @internal */ export type WireWithdrawalsGetWireWithdrawalRequest$Outbound = { account_id: string; wireWithdrawal_id: string; }; /** @internal */ export declare const WireWithdrawalsGetWireWithdrawalRequest$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 WireWithdrawalsGetWireWithdrawalRequest$ { /** @deprecated use `WireWithdrawalsGetWireWithdrawalRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `WireWithdrawalsGetWireWithdrawalRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `WireWithdrawalsGetWireWithdrawalRequest$Outbound` instead. */ type Outbound = WireWithdrawalsGetWireWithdrawalRequest$Outbound; } export declare function wireWithdrawalsGetWireWithdrawalRequestToJSON(wireWithdrawalsGetWireWithdrawalRequest: WireWithdrawalsGetWireWithdrawalRequest): string; export declare function wireWithdrawalsGetWireWithdrawalRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const WireWithdrawalsGetWireWithdrawalResponse$inboundSchema: z.ZodType; /** @internal */ export type WireWithdrawalsGetWireWithdrawalResponse$Outbound = { HttpMeta: components.HTTPMetadata$Outbound; WireWithdrawal?: components.WireWithdrawal$Outbound | undefined; Status?: components.Status$Outbound | undefined; }; /** @internal */ export declare const WireWithdrawalsGetWireWithdrawalResponse$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 WireWithdrawalsGetWireWithdrawalResponse$ { /** @deprecated use `WireWithdrawalsGetWireWithdrawalResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `WireWithdrawalsGetWireWithdrawalResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `WireWithdrawalsGetWireWithdrawalResponse$Outbound` instead. */ type Outbound = WireWithdrawalsGetWireWithdrawalResponse$Outbound; } export declare function wireWithdrawalsGetWireWithdrawalResponseToJSON(wireWithdrawalsGetWireWithdrawalResponse: WireWithdrawalsGetWireWithdrawalResponse): string; export declare function wireWithdrawalsGetWireWithdrawalResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=wirewithdrawalsgetwirewithdrawal.d.ts.map