Skip to content

Commit c831992

Browse files
committed
chore(assistant-v2): manual changes
1 parent 735b2d6 commit c831992

File tree

3 files changed

+2
-15
lines changed

3 files changed

+2
-15
lines changed

Scripts/Services/Assistant/V2/Model/RuntimeResponseGeneric.cs

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -148,11 +148,6 @@ public class PreferenceValue
148148
[JsonProperty("agent_unavailable", NullValueHandling = NullValueHandling.Ignore)]
149149
public AgentAvailabilityMessage AgentUnavailable { get; protected set; }
150150
/// <summary>
151-
/// Routing or other contextual information to be used by target service desk systems.
152-
/// </summary>
153-
[JsonProperty("transfer_info", NullValueHandling = NullValueHandling.Ignore)]
154-
public DialogNodeOutputConnectToAgentTransferInfo TransferInfo { get; protected set; }
155-
/// <summary>
156151
/// A label identifying the topic of the conversation, derived from the **title** property of the relevant node
157152
/// or the **topic** property of the dialog node response.
158153
/// </summary>

Scripts/Services/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.

Scripts/Services/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)