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

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

package com.podio.rating;

import java.io.Serializable;
import java.util.List;

import com.podio.contact.ProfileMini;

public class ValueRatings implements Serializable {

	private static final long serialVersionUID = 1L;
	
	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 - 2024 Weber Informatics LLC | Privacy Policy