Result of writing to memory

interface WriteMemoryResult {
    success: boolean;
    memoryId?: string;
    error?: string;
    message?: string;
}

Properties

success: boolean
memoryId?: string
error?: string
message?: string