clwoz-models
Version:
Models for ConversationLearner
16 lines (15 loc) • 383 B
TypeScript
/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License.
*/
export interface MemoryValue {
userText: string | null;
displayText: string | null;
builtinType: string | null;
resolution: {} | null;
enumValueId?: string;
}
export interface Memory {
entityName: string;
entityValues: MemoryValue[];
}