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