Interface LifecycleActionResponse

The GMI's response to a MemoryLifecycleEvent. LifecycleActionResponse

interface LifecycleActionResponse {
    gmiId: string;
    eventId: string;
    actionTaken: LifecycleAction;
    rationale?: string;
    requestedRetentionDuration?: string;
    metadata?: Record<string, any>;
}

Properties

gmiId: string
eventId: string
actionTaken: LifecycleAction
rationale?: string
requestedRetentionDuration?: string
metadata?: Record<string, any>