clwoz-models
Version:
Models for ConversationLearner
17 lines (15 loc) • 357 B
text/typescript
/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License.
*/
/** Information about the running bot */
export interface Template {
name: string
variables: TemplateVariable[]
body?: string
validationError: string | null
}
export interface TemplateVariable {
key: string
type: string
}