File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
articles/communication-services/tutorials/includes Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 2
2
// Call when a support request is being called
3
3
private void onSupportRequest(String userMessage) {
4
4
// Assuming the getSupportFiles method returns a List or similar collection.
5
- List<SupportFile > supportFiles = callClient. getdebugInfo(). getSupportFiles();
5
+ List<File > supportFiles = callClient. getdebugInfo(). getSupportFiles();
6
6
7
7
// Send the files and any user message to your Ticket System
8
8
dispatchSupportRequestToBackend(userMessage, supportFiles);
9
9
}
10
- ```
10
+ ```
Original file line number Diff line number Diff line change 3
3
private void OnSupportRequest (string userMessage )
4
4
{
5
5
// Assuming the GetSupportFiles method returns a List or similar collection.
6
- IReadOnlyList < SupportFile > supportFiles = callClient .DebugDetails .SupportFiles ;
6
+ IReadOnlyList < string > supportFiles = callClient .DebugDetails .SupportFiles ;
7
7
8
8
// Send the files and any user message to your Ticket System
9
9
DispatchSupportRequestToBackend (userMessage , supportFiles );
10
10
}
11
- ```
11
+ ```
You can’t perform that action at this time.
0 commit comments