Skip to content

Commit 4dacd22

Browse files
authored
Adds SensitivityMask to DialogSensitivityUpdate (Azure#46796)
1 parent fd0b3e7 commit 4dacd22

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

sdk/communication/Azure.Communication.CallAutomation/api/Azure.Communication.CallAutomation.netstandard2.0.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -766,6 +766,7 @@ public partial class DialogSensitivityUpdate : Azure.Communication.CallAutomatio
766766
internal DialogSensitivityUpdate() { }
767767
public string DialogId { get { throw null; } }
768768
public Azure.Communication.CallAutomation.DialogInputType? DialogInputType { get { throw null; } }
769+
public bool? SensitiveMask { get { throw null; } }
769770
public static Azure.Communication.CallAutomation.DialogSensitivityUpdate Deserialize(string content) { throw null; }
770771
}
771772
public partial class DialogStarted : Azure.Communication.CallAutomation.CallAutomationEventBase

sdk/communication/Azure.Communication.CallAutomation/src/Models/Events/DialogSensitivityUpdate.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ internal DialogSensitivityUpdate(DialogSensitivityUpdateInternal internalEvent)
2626
OperationContext = internalEvent.OperationContext;
2727
ResultInformation = internalEvent.ResultInformation;
2828
DialogId = internalEvent.DialogId;
29+
SensitiveMask = internalEvent.SensitiveMask;
2930
}
3031

3132
/// <summary> Determines the type of the dialog. </summary>
@@ -34,6 +35,9 @@ internal DialogSensitivityUpdate(DialogSensitivityUpdateInternal internalEvent)
3435
/// <summary> Dialog Id</summary>
3536
public string DialogId { get; }
3637

38+
/// <summary> SensitiveMask </summary>
39+
public bool? SensitiveMask { get; }
40+
3741
/// <summary>
3842
/// Deserialize <see cref="DialogSensitivityUpdate"/> event.
3943
/// </summary>

0 commit comments

Comments
 (0)