All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.podio.rating.ValueRatings Maven / Gradle / Ivy

There is a newer version: 0.7.9
Show newest version
package com.podio.rating;

import java.util.List;

import com.podio.contact.ProfileMini;

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