
com.podio.rating.ValueRatings Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of api Show documentation
Show all versions of api Show documentation
The official Java wrapper for the Podio API
package com.podio.rating;
import java.util.List;
import com.podio.user.UserProfileMini;
public class ValueRatings {
private int total;
private List users;
@Override
public String toString() {
return "ValueRatings [total=" + total + ", users=" + users + "]";
}
public int getTotal() {
return total;
}
public void setTotal(int total) {
this.total = total;
}
public List getUsers() {
return users;
}
public void setUsers(List users) {
this.users = users;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy