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 DeleteMemoryEntryRequest = { memoryStoreId: string; entryId: string; ifMatch?: string | undefined; /** * Optional external end-user identifier forwarded by the API gateway. */ xOnBehalfOf?: string | undefined; deleteMemoryEntryRequest?: components.DeleteMemoryEntryRequest | undefined; }; /** @internal */ export declare const DeleteMemoryEntryRequest$inboundSchema: z.ZodType; /** @internal */ export type DeleteMemoryEntryRequest$Outbound = { memory_store_id: string; entry_id: string; if_match?: string | undefined; "X-On-Behalf-Of"?: string | undefined; DeleteMemoryEntryRequest?: components.DeleteMemoryEntryRequest$Outbound | undefined; }; /** @internal */ export declare const DeleteMemoryEntryRequest$outboundSchema: z.ZodType; export declare function deleteMemoryEntryRequestToJSON(deleteMemoryEntryRequest: DeleteMemoryEntryRequest): string; export declare function deleteMemoryEntryRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=deletememoryentry.d.ts.map