-
Notifications
You must be signed in to change notification settings - Fork 178
/
Copy pathLuisTraceInfo.cs
38 lines (35 loc) · 1.11 KB
/
LuisTraceInfo.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
namespace Bot.Builder.Community.Dialogs.Luis
{
using Bot.Builder.Community.Dialogs.Luis.Models;
using Newtonsoft.Json;
/// <summary>
/// The schema for the LUIS trace info
/// </summary>
public class LuisTraceInfo
{
/// <summary>
/// Gets or sets the raw response coming back from the LUIS service
/// </summary>
/// <value>
/// The raw response coming back from the LUIS service
/// </value>
[JsonProperty("luisResult")]
public LuisResult LuisResult { get; set; }
/// <summary>
/// Gets or sets the options passed to the LUIS service
/// </summary>
/// <value>
/// The options passed to the LUIS service
/// </value>
[JsonProperty("luisOptions")]
public ILuisOptions LuisOptions { get; set; }
/// <summary>
/// Gets or sets the metadata about the LUIS app
/// </summary>
/// <value>
/// The metadata about the LUIS app
/// </value>
[JsonProperty("luisModel")]
public ILuisModel LuisModel { get; set; }
}
}