com.genesys.workspace.events.CallStateChanged 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.Call;
public class CallStateChanged {
private Call call;
private String previousConnId;
private NotificationType notificationType;
public CallStateChanged(Call call, NotificationType notificationType, String previousConnId) {
this.call = call;
this.notificationType = notificationType;
this.previousConnId = previousConnId;
}
public Call getCall() {
return this.call;
}
public NotificationType getNotificationType() {
return this.notificationType;
}
public String getPreviousConnId() {
return this.previousConnId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy