-
public final class CallCompositeUserReportedIssueEvent
Represents a user-reported issue event in a call. - Dispatched when the user submits the support form. - Subscribing to this event enables the support form.
-
-
Field Summary
Fields Modifier and Type Field Description private final String
userMessage
private final CallCompositeDebugInfo
debugInfo
-
Constructor Summary
Constructors Constructor Description CallCompositeUserReportedIssueEvent(String userMessage, CallCompositeDebugInfo debugInfo)
Constructs a new instance of CallCompositeUserReportedIssueEvent.
-
Method Summary
Modifier and Type Method Description String
getUserMessage()
Retrieves the message provided by the user describing the reported issue. CallCompositeDebugInfo
getDebugInfo()
Retrieves the diagnostic information related to the call, aiding in the analysis of the reported issue. -
-
Constructor Detail
-
CallCompositeUserReportedIssueEvent
CallCompositeUserReportedIssueEvent(String userMessage, CallCompositeDebugInfo debugInfo)
Constructs a new instance of CallCompositeUserReportedIssueEvent.- Parameters:
userMessage
- A descriptive message provided by the user about the issue.debugInfo
- Diagnostic information including call identifiers, aiding in issue resolution.
-
-
Method Detail
-
getUserMessage
String getUserMessage()
Retrieves the message provided by the user describing the reported issue.
-
getDebugInfo
CallCompositeDebugInfo getDebugInfo()
Retrieves the diagnostic information related to the call, aiding in the analysis of the reported issue.See CallCompositeDebugInfo for more details.
-
-
-
-