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 WireDepositsGetWireDepositRequest = { /** * The account id. */ accountId: string; /** * The wireDeposit id. */ wireDepositId: string; }; export type WireDepositsGetWireDepositResponse = { httpMeta: components.HTTPMetadata; /** * OK */ wireDeposit?: components.WireDeposit | undefined; /** * INVALID_ARGUMENT: The request has an invalid argument. */ status?: components.Status | undefined; }; /** @internal */ export declare const WireDepositsGetWireDepositRequest$inboundSchema: z.ZodType; /** @internal */ export type WireDepositsGetWireDepositRequest$Outbound = { account_id: string; wireDeposit_id: string; }; /** @internal */ export declare const WireDepositsGetWireDepositRequest$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 WireDepositsGetWireDepositRequest$ { /** @deprecated use `WireDepositsGetWireDepositRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `WireDepositsGetWireDepositRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `WireDepositsGetWireDepositRequest$Outbound` instead. */ type Outbound = WireDepositsGetWireDepositRequest$Outbound; } export declare function wireDepositsGetWireDepositRequestToJSON(wireDepositsGetWireDepositRequest: WireDepositsGetWireDepositRequest): string; export declare function wireDepositsGetWireDepositRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const WireDepositsGetWireDepositResponse$inboundSchema: z.ZodType; /** @internal */ export type WireDepositsGetWireDepositResponse$Outbound = { HttpMeta: components.HTTPMetadata$Outbound; WireDeposit?: components.WireDeposit$Outbound | undefined; Status?: components.Status$Outbound | undefined; }; /** @internal */ export declare const WireDepositsGetWireDepositResponse$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 WireDepositsGetWireDepositResponse$ { /** @deprecated use `WireDepositsGetWireDepositResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `WireDepositsGetWireDepositResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `WireDepositsGetWireDepositResponse$Outbound` instead. */ type Outbound = WireDepositsGetWireDepositResponse$Outbound; } export declare function wireDepositsGetWireDepositResponseToJSON(wireDepositsGetWireDepositResponse: WireDepositsGetWireDepositResponse): string; export declare function wireDepositsGetWireDepositResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=wiredepositsgetwiredeposit.d.ts.map