Skip to content

Commit

Permalink
Adds SensitivityMask to DialogSensitivityUpdate (#46796)
Browse files Browse the repository at this point in the history
  • Loading branch information
calvinkwtang authored Oct 24, 2024
1 parent fd0b3e7 commit 4dacd22
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -766,6 +766,7 @@ public partial class DialogSensitivityUpdate : Azure.Communication.CallAutomatio
internal DialogSensitivityUpdate() { }
public string DialogId { get { throw null; } }
public Azure.Communication.CallAutomation.DialogInputType? DialogInputType { get { throw null; } }
public bool? SensitiveMask { get { throw null; } }
public static Azure.Communication.CallAutomation.DialogSensitivityUpdate Deserialize(string content) { throw null; }
}
public partial class DialogStarted : Azure.Communication.CallAutomation.CallAutomationEventBase
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ internal DialogSensitivityUpdate(DialogSensitivityUpdateInternal internalEvent)
OperationContext = internalEvent.OperationContext;
ResultInformation = internalEvent.ResultInformation;
DialogId = internalEvent.DialogId;
SensitiveMask = internalEvent.SensitiveMask;
}

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

/// <summary> SensitiveMask </summary>
public bool? SensitiveMask { get; }

/// <summary>
/// Deserialize <see cref="DialogSensitivityUpdate"/> event.
/// </summary>
Expand Down

0 comments on commit 4dacd22

Please sign in to comment.