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 WireDepositsSimulateWireDepositRequest = { /** * The account id. */ accountId: string; simulateWireDepositRequestCreate: components.SimulateWireDepositRequestCreate; }; export type WireDepositsSimulateWireDepositResponse = { httpMeta: components.HTTPMetadata; /** * OK */ wireDeposit?: components.WireDeposit | undefined; /** * INVALID_ARGUMENT: The request has an invalid argument. */ status?: components.Status | undefined; }; /** @internal */ export declare const WireDepositsSimulateWireDepositRequest$inboundSchema: z.ZodType; /** @internal */ export type WireDepositsSimulateWireDepositRequest$Outbound = { account_id: string; SimulateWireDepositRequestCreate: components.SimulateWireDepositRequestCreate$Outbound; }; /** @internal */ export declare const WireDepositsSimulateWireDepositRequest$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 WireDepositsSimulateWireDepositRequest$ { /** @deprecated use `WireDepositsSimulateWireDepositRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `WireDepositsSimulateWireDepositRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `WireDepositsSimulateWireDepositRequest$Outbound` instead. */ type Outbound = WireDepositsSimulateWireDepositRequest$Outbound; } export declare function wireDepositsSimulateWireDepositRequestToJSON(wireDepositsSimulateWireDepositRequest: WireDepositsSimulateWireDepositRequest): string; export declare function wireDepositsSimulateWireDepositRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const WireDepositsSimulateWireDepositResponse$inboundSchema: z.ZodType; /** @internal */ export type WireDepositsSimulateWireDepositResponse$Outbound = { HttpMeta: components.HTTPMetadata$Outbound; WireDeposit?: components.WireDeposit$Outbound | undefined; Status?: components.Status$Outbound | undefined; }; /** @internal */ export declare const WireDepositsSimulateWireDepositResponse$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 WireDepositsSimulateWireDepositResponse$ { /** @deprecated use `WireDepositsSimulateWireDepositResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `WireDepositsSimulateWireDepositResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `WireDepositsSimulateWireDepositResponse$Outbound` instead. */ type Outbound = WireDepositsSimulateWireDepositResponse$Outbound; } export declare function wireDepositsSimulateWireDepositResponseToJSON(wireDepositsSimulateWireDepositResponse: WireDepositsSimulateWireDepositResponse): string; export declare function wireDepositsSimulateWireDepositResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=wiredepositssimulatewiredeposit.d.ts.map