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