com.genesys.statistics.StatisticValueNotification Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of statistics Show documentation
Show all versions of statistics Show documentation
A Java library to interface to Genesys Statistics public API
package com.genesys.statistics;
import com.genesys.internal.statistics.model.StatisticValue;
public class StatisticValueNotification
{
private final String subscriptionId;
private final StatisticValue value;
public StatisticValueNotification(String subscriptionId, StatisticValue value)
{
this.subscriptionId = subscriptionId;
this.value = value;
}
public String getSubscriptionId()
{
return subscriptionId;
}
public StatisticValue getValue()
{
return value;
}
@Override
public String toString()
{
return "StatisticValueNotification{" + "subscriptionId='" + subscriptionId + '\'' + ", value=" + value + '}';
}
}