import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type GetMemoryEntryRequest = { memoryStoreId: string; entryId: string; /** * Optional external end-user identifier forwarded by the API gateway. */ xOnBehalfOf?: string | undefined; }; /** @internal */ export declare const GetMemoryEntryRequest$inboundSchema: z.ZodType; /** @internal */ export type GetMemoryEntryRequest$Outbound = { memory_store_id: string; entry_id: string; "X-On-Behalf-Of"?: string | undefined; }; /** @internal */ export declare const GetMemoryEntryRequest$outboundSchema: z.ZodType; export declare function getMemoryEntryRequestToJSON(getMemoryEntryRequest: GetMemoryEntryRequest): string; export declare function getMemoryEntryRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getmemoryentry.d.ts.map