import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type GetOrderByIdRequest = { /** * Order Id, has format 'ETHEREUM:${id}' */ id: string; }; /** @internal */ export declare const GetOrderByIdRequest$inboundSchema: z.ZodType; /** @internal */ export type GetOrderByIdRequest$Outbound = { id: string; }; /** @internal */ export declare const GetOrderByIdRequest$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 GetOrderByIdRequest$ { /** @deprecated use `GetOrderByIdRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetOrderByIdRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetOrderByIdRequest$Outbound` instead. */ type Outbound = GetOrderByIdRequest$Outbound; } export declare function getOrderByIdRequestToJSON(getOrderByIdRequest: GetOrderByIdRequest): string; export declare function getOrderByIdRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getorderbyid.d.ts.map