Skip to content

Commit

Permalink
fix(manual-changes): fix runtime error
Browse files Browse the repository at this point in the history
  • Loading branch information
nan2iz committed Sep 14, 2021
1 parent 8d25195 commit 9dc83ea
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,11 +48,7 @@ public class RuntimeResponseGenericRuntimeResponseTypeChannelTransfer : RuntimeR
/// Information used by an integration to transfer the conversation to a different channel.
/// </summary>
[JsonProperty("transfer_info", NullValueHandling = NullValueHandling.Ignore)]
public new ChannelTransferInfo TransferInfo
{
get { return base.TransferInfo; }
set { base.TransferInfo = value; }
}
public new ChannelTransferInfo TransferInfo { get; protected set; }
/// <summary>
/// An array of objects specifying channels for which the response is intended. If **channels** is present, the
/// response is intended for a built-in integration and should not be handled by an API client.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,11 +68,7 @@ public class RuntimeResponseGenericRuntimeResponseTypeConnectToAgent : RuntimeRe
/// Routing or other contextual information to be used by target service desk systems.
/// </summary>
[JsonProperty("transfer_info", NullValueHandling = NullValueHandling.Ignore)]
public new DialogNodeOutputConnectToAgentTransferInfo TransferInfo
{
get { return base.TransferInfo; }
set { base.TransferInfo = value; }
}
public new DialogNodeOutputConnectToAgentTransferInfo TransferInfo { get; protected set; }
/// <summary>
/// A label identifying the topic of the conversation, derived from the **title** property of the relevant node
/// or the **topic** property of the dialog node response.
Expand Down

0 comments on commit 9dc83ea

Please sign in to comment.