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 ReaderGetEventMessageRequest = { /** * The message id. */ messageId: string; }; export type ReaderGetEventMessageResponse = { httpMeta: components.HTTPMetadata; /** * OK */ eventMessage?: components.EventMessage | undefined; /** * INVALID_ARGUMENT: The request was not well formed. */ status?: components.Status | undefined; }; /** @internal */ export declare const ReaderGetEventMessageRequest$inboundSchema: z.ZodType; /** @internal */ export type ReaderGetEventMessageRequest$Outbound = { message_id: string; }; /** @internal */ export declare const ReaderGetEventMessageRequest$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 ReaderGetEventMessageRequest$ { /** @deprecated use `ReaderGetEventMessageRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ReaderGetEventMessageRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ReaderGetEventMessageRequest$Outbound` instead. */ type Outbound = ReaderGetEventMessageRequest$Outbound; } export declare function readerGetEventMessageRequestToJSON(readerGetEventMessageRequest: ReaderGetEventMessageRequest): string; export declare function readerGetEventMessageRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const ReaderGetEventMessageResponse$inboundSchema: z.ZodType; /** @internal */ export type ReaderGetEventMessageResponse$Outbound = { HttpMeta: components.HTTPMetadata$Outbound; EventMessage?: components.EventMessage$Outbound | undefined; Status?: components.Status$Outbound | undefined; }; /** @internal */ export declare const ReaderGetEventMessageResponse$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 ReaderGetEventMessageResponse$ { /** @deprecated use `ReaderGetEventMessageResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ReaderGetEventMessageResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ReaderGetEventMessageResponse$Outbound` instead. */ type Outbound = ReaderGetEventMessageResponse$Outbound; } export declare function readerGetEventMessageResponseToJSON(readerGetEventMessageResponse: ReaderGetEventMessageResponse): string; export declare function readerGetEventMessageResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=readergeteventmessage.d.ts.map