@voice-ping/cognitive-services-speech
Version:
VoicePing Cognitive Services Speech SDK for JavaScript forked from Microsoft
23 lines (21 loc) • 579 B
JavaScript
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT license.
// response
export class IntentResponse {
constructor(json) {
this.privIntentResponse = JSON.parse(json);
}
static fromJSON(json) {
return new IntentResponse(json);
}
get query() {
return this.privIntentResponse.query;
}
get topScoringIntent() {
return this.privIntentResponse.topScoringIntent;
}
get entities() {
return this.privIntentResponse.entities;
}
}
//# sourceMappingURL=IntentResponse.js.map