forked from aws/aws-lambda-dotnet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLexRecentIntentSummaryViewType.cs
75 lines (68 loc) · 2.44 KB
/
LexRecentIntentSummaryViewType.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
using System.Collections.Generic;
using System.Runtime.Serialization;
namespace Amazon.Lambda.LexEvents
{
/// <summary>
/// The class recent intent summary view.
/// </summary>
[DataContract]
public class LexRecentIntentSummaryViewType
{
/// <summary>
/// Gets and sets the IntentName
/// </summary>
[DataMember(Name = "intentName", EmitDefaultValue = false)]
#if NETCOREAPP3_1
[System.Text.Json.Serialization.JsonPropertyName("intentName")]
#endif
public string IntentName { get; set; }
/// <summary>
/// Gets and sets the CheckpointLabel
/// </summary>
[DataMember(Name = "checkpointLabel", EmitDefaultValue = false)]
#if NETCOREAPP3_1
[System.Text.Json.Serialization.JsonPropertyName("checkpointLabel")]
#endif
public string CheckpointLabel { get; set; }
/// <summary>
/// Gets and sets the Slots
/// </summary>
[DataMember(Name = "slots", EmitDefaultValue = false)]
#if NETCOREAPP3_1
[System.Text.Json.Serialization.JsonPropertyName("slots")]
#endif
public IDictionary<string, string> Slots { get; set; }
/// <summary>
/// Gets and sets the ConfirmationStatus
/// </summary>
[DataMember(Name = "confirmationStatus", EmitDefaultValue = false)]
#if NETCOREAPP3_1
[System.Text.Json.Serialization.JsonPropertyName("confirmationStatus")]
#endif
public string ConfirmationStatus { get; set; }
/// <summary>
/// Gets and sets the DialogActionType
/// </summary>
[DataMember(Name = "dialogActionType", EmitDefaultValue = false)]
#if NETCOREAPP3_1
[System.Text.Json.Serialization.JsonPropertyName("dialogActionType")]
#endif
public string DialogActionType { get; set; }
/// <summary>
/// Gets and sets the FulfillmentState
/// </summary>
[DataMember(Name = "fulfillmentState", EmitDefaultValue = false)]
#if NETCOREAPP3_1
[System.Text.Json.Serialization.JsonPropertyName("fulfillmentState")]
#endif
public string FulfillmentState { get; set; }
/// <summary>
/// Gets and sets the SlotToElicit
/// </summary>
[DataMember(Name = "slotToElicit", EmitDefaultValue = false)]
#if NETCOREAPP3_1
[System.Text.Json.Serialization.JsonPropertyName("slotToElicit")]
#endif
public string SlotToElicit { get; set; }
}
}