use of gachon.dicomviewer.helpers.SendMessageInBg in project MobileDicomViewer by awholeneworld.
the class MainActivity method sendMessageToBot.
private void sendMessageToBot(String message) {
QueryInput input = QueryInput.newBuilder().setText(TextInput.newBuilder().setText(message).setLanguageCode("ko")).build();
new SendMessageInBg(this, sessionName, sessionsClient, input).execute();
}
Aggregations