Skip to content

Latest commit

 

History

History
10 lines (9 loc) · 431 Bytes

File metadata and controls

10 lines (9 loc) · 431 Bytes
// Call when a support request is being called
private func onSupportRequest(userMessage: String) {
    // Assuming the getSupportFiles method returns an array or similar collection.
    let supportFiles = callClient.debugInfo.getSupportFiles()
    
    // Send the files and any user message to your Ticket System            
    dispatchSupportRequestToBackend(userMessage: userMessage, supportFiles: supportFiles)
}