Skip to content

Commit 9dc83ea

Browse files
committed
fix(manual-changes): fix runtime error
1 parent 8d25195 commit 9dc83ea

File tree

2 files changed

+2
-10
lines changed

2 files changed

+2
-10
lines changed

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

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -48,11 +48,7 @@ public class RuntimeResponseGenericRuntimeResponseTypeChannelTransfer : RuntimeR
4848
/// Information used by an integration to transfer the conversation to a different channel.
4949
/// </summary>
5050
[JsonProperty("transfer_info", NullValueHandling = NullValueHandling.Ignore)]
51-
public new ChannelTransferInfo TransferInfo
52-
{
53-
get { return base.TransferInfo; }
54-
set { base.TransferInfo = value; }
55-
}
51+
public new ChannelTransferInfo TransferInfo { get; protected set; }
5652
/// <summary>
5753
/// An array of objects specifying channels for which the response is intended. If **channels** is present, the
5854
/// response is intended for a built-in integration and should not be handled by an API client.

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

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -68,11 +68,7 @@ public class RuntimeResponseGenericRuntimeResponseTypeConnectToAgent : RuntimeRe
6868
/// Routing or other contextual information to be used by target service desk systems.
6969
/// </summary>
7070
[JsonProperty("transfer_info", NullValueHandling = NullValueHandling.Ignore)]
71-
public new DialogNodeOutputConnectToAgentTransferInfo TransferInfo
72-
{
73-
get { return base.TransferInfo; }
74-
set { base.TransferInfo = value; }
75-
}
71+
public new DialogNodeOutputConnectToAgentTransferInfo TransferInfo { get; protected set; }
7672
/// <summary>
7773
/// A label identifying the topic of the conversation, derived from the **title** property of the relevant node
7874
/// or the **topic** property of the dialog node response.

0 commit comments

Comments
 (0)