com.mediamath.terminalone.models.Aggregate Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of t1-java Show documentation
Show all versions of t1-java Show documentation
Java SDK to enable use of MediaMath APIs
package com.mediamath.terminalone.models;
public class Aggregate {
private String function;
private float value;
private String name;
public String getFunction() {
return function;
}
public void setFunction(String function) {
this.function = function;
}
public float getValue() {
return value;
}
public void setValue(float value) {
this.value = value;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
}