Skip to content

Commit fb05fb6

Browse files
committed
chore(assistant-v2): hand edit changes
1 parent ca838f9 commit fb05fb6

9 files changed

+10
-60
lines changed

src/IBM.Watson.Assistant.v2/Model/MessageOutputDebugTurnEvent.cs

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -140,11 +140,6 @@ public class ReasonEnumValue
140140
[JsonProperty("event", NullValueHandling = NullValueHandling.Ignore)]
141141
public string _Event { get; protected set; }
142142
/// <summary>
143-
/// Gets or Sets Source
144-
/// </summary>
145-
[JsonProperty("source", NullValueHandling = NullValueHandling.Ignore)]
146-
public TurnEventActionSource Source { get; protected set; }
147-
/// <summary>
148143
/// The time when the action started processing the message.
149144
/// </summary>
150145
[JsonProperty("action_start_time", NullValueHandling = NullValueHandling.Ignore)]
@@ -170,11 +165,6 @@ public class ReasonEnumValue
170165
/// </summary>
171166
[JsonProperty("callout", NullValueHandling = NullValueHandling.Ignore)]
172167
public TurnEventCalloutCallout Callout { get; protected set; }
173-
/// <summary>
174-
/// Gets or Sets Error
175-
/// </summary>
176-
[JsonProperty("error", NullValueHandling = NullValueHandling.Ignore)]
177-
public TurnEventCalloutError Error { get; protected set; }
178168
}
179169

180170
}

src/IBM.Watson.Assistant.v2/Model/MessageOutputDebugTurnEventTurnEventActionFinished.cs

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -90,11 +90,7 @@ public class ReasonEnumValue
9090
/// Gets or Sets Source
9191
/// </summary>
9292
[JsonProperty("source", NullValueHandling = NullValueHandling.Ignore)]
93-
public new TurnEventActionSource Source
94-
{
95-
get { return base.Source; }
96-
set { base.Source = value; }
97-
}
93+
public new TurnEventActionSource Source { get; protected set; }
9894
/// <summary>
9995
/// The time when the action started processing the message.
10096
/// </summary>

src/IBM.Watson.Assistant.v2/Model/MessageOutputDebugTurnEventTurnEventActionVisited.cs

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -101,11 +101,7 @@ public class ReasonEnumValue
101101
/// Gets or Sets Source
102102
/// </summary>
103103
[JsonProperty("source", NullValueHandling = NullValueHandling.Ignore)]
104-
public new TurnEventActionSource Source
105-
{
106-
get { return base.Source; }
107-
set { base.Source = value; }
108-
}
104+
public new TurnEventActionSource Source { get; protected set; }
109105
/// <summary>
110106
/// The time when the action started processing the message.
111107
/// </summary>

src/IBM.Watson.Assistant.v2/Model/MessageOutputDebugTurnEventTurnEventCallout.cs

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,7 @@ public class MessageOutputDebugTurnEventTurnEventCallout : MessageOutputDebugTur
3737
/// Gets or Sets Source
3838
/// </summary>
3939
[JsonProperty("source", NullValueHandling = NullValueHandling.Ignore)]
40-
public new TurnEventActionSource Source
41-
{
42-
get { return base.Source; }
43-
set { base.Source = value; }
44-
}
40+
public new TurnEventActionSource Source { get; protected set; }
4541
/// <summary>
4642
/// Gets or Sets Callout
4743
/// </summary>
@@ -55,11 +51,7 @@ public class MessageOutputDebugTurnEventTurnEventCallout : MessageOutputDebugTur
5551
/// Gets or Sets Error
5652
/// </summary>
5753
[JsonProperty("error", NullValueHandling = NullValueHandling.Ignore)]
58-
public new TurnEventCalloutError Error
59-
{
60-
get { return base.Error; }
61-
set { base.Error = value; }
62-
}
54+
public new TurnEventCalloutError Error { get; protected set; }
6355
}
6456

6557
}

src/IBM.Watson.Assistant.v2/Model/MessageOutputDebugTurnEventTurnEventHandlerVisited.cs

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,7 @@ public class MessageOutputDebugTurnEventTurnEventHandlerVisited : MessageOutputD
3737
/// Gets or Sets Source
3838
/// </summary>
3939
[JsonProperty("source", NullValueHandling = NullValueHandling.Ignore)]
40-
public new TurnEventActionSource Source
41-
{
42-
get { return base.Source; }
43-
set { base.Source = value; }
44-
}
40+
public new TurnEventActionSource Source { get; protected set; }
4541
/// <summary>
4642
/// The time when the action started processing the message.
4743
/// </summary>

src/IBM.Watson.Assistant.v2/Model/MessageOutputDebugTurnEventTurnEventNodeVisited.cs

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -69,11 +69,7 @@ public class ReasonEnumValue
6969
/// Gets or Sets Source
7070
/// </summary>
7171
[JsonProperty("source", NullValueHandling = NullValueHandling.Ignore)]
72-
public new TurnEventNodeSource Source
73-
{
74-
get { return base.Source; }
75-
set { base.Source = value; }
76-
}
72+
public new TurnEventNodeSource Source { get; protected set; }
7773
}
7874

7975
}

src/IBM.Watson.Assistant.v2/Model/MessageOutputDebugTurnEventTurnEventSearch.cs

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -37,20 +37,12 @@ public class MessageOutputDebugTurnEventTurnEventSearch : MessageOutputDebugTurn
3737
/// Gets or Sets Source
3838
/// </summary>
3939
[JsonProperty("source", NullValueHandling = NullValueHandling.Ignore)]
40-
public new TurnEventActionSource Source
41-
{
42-
get { return base.Source; }
43-
set { base.Source = value; }
44-
}
40+
public new TurnEventActionSource Source { get; protected set; }
4541
/// <summary>
4642
/// Gets or Sets Error
4743
/// </summary>
4844
[JsonProperty("error", NullValueHandling = NullValueHandling.Ignore)]
49-
public new TurnEventSearchError Error
50-
{
51-
get { return base.Error; }
52-
set { base.Error = value; }
53-
}
45+
public new TurnEventSearchError Error { get; protected set; }
5446
}
5547

5648
}

src/IBM.Watson.Assistant.v2/Model/MessageOutputDebugTurnEventTurnEventStepAnswered.cs

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -57,11 +57,7 @@ public class ConditionTypeEnumValue
5757
/// Gets or Sets Source
5858
/// </summary>
5959
[JsonProperty("source", NullValueHandling = NullValueHandling.Ignore)]
60-
public new TurnEventActionSource Source
61-
{
62-
get { return base.Source; }
63-
set { base.Source = value; }
64-
}
60+
public new TurnEventActionSource Source { get; protected set; }
6561
/// <summary>
6662
/// The time when the action started processing the message.
6763
/// </summary>

src/IBM.Watson.Assistant.v2/Model/MessageOutputDebugTurnEventTurnEventStepVisited.cs

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -57,11 +57,7 @@ public class ConditionTypeEnumValue
5757
/// Gets or Sets Source
5858
/// </summary>
5959
[JsonProperty("source", NullValueHandling = NullValueHandling.Ignore)]
60-
public new TurnEventActionSource Source
61-
{
62-
get { return base.Source; }
63-
set { base.Source = value; }
64-
}
60+
public new TurnEventActionSource Source { get; protected set; }
6561
/// <summary>
6662
/// The time when the action started processing the message.
6763
/// </summary>

0 commit comments

Comments
 (0)