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