com.genesys.workspace.models.targets.availability.DnAvailability 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.models.targets.availability;
public class DnAvailability extends TargetAvailability {
private final int numberOfWaitingCalls;
public DnAvailability(int numberOfWaitingCalls) {
this.numberOfWaitingCalls = numberOfWaitingCalls;
}
public int getNumberOfWaitingCalls() {
return this.numberOfWaitingCalls;
}
@Override
public String toString() {
String str = "waitingCalls [" + this.numberOfWaitingCalls + "]";
return str;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy