Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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