@voiceflow/base-types
Version:
Voiceflow base project types
19 lines • 526 B
TypeScript
export declare enum NLUUnclassifiedDataType {
CONVERSATION = "conversation",
PROTOTYPE = "prototype",
NLU_DATASOURCE_IMPORT = "nluDatasourceImport"
}
export interface NLUUnclassifiedUtterances {
id: string;
utterance: string;
sourceID?: string;
}
export interface NLUUnclassifiedData {
key?: string;
creatorID?: number;
type: NLUUnclassifiedDataType;
name: string;
utterances: NLUUnclassifiedUtterances[];
importedAt?: string;
}
//# sourceMappingURL=nluUnclassifiedData.d.ts.map