com.genesys.workspace.events.MessageLogUpdated Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of workspace Show documentation
Show all versions of workspace Show documentation
A Java library to interface to Genesys Workspace public API
package com.genesys.workspace.events;
import com.genesys.workspace.models.Chat;
import com.genesys.workspace.models.TranscriptMessage;
import java.util.List;
public class MessageLogUpdated {
private String id;
private Chat chat;
private List messagesUpdated;
private String notificationType;
public MessageLogUpdated(String id, Chat chat, List messagesUpdated, String notificationType) {
this.id = id;
this.chat = chat;
this.messagesUpdated = messagesUpdated;
this.notificationType = notificationType;
}
public String getId() {
return id;
}
public Chat getChat() {
return chat;
}
public List getMessagesUpdated() {
return messagesUpdated;
}
public String getNotificationType() {
return notificationType;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy