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

com.podio.contact.ProfileShort Maven / Gradle / Ivy

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

import org.codehaus.jackson.annotate.JsonProperty;

public class ProfileShort {

	/**
	 * The id of the user
	 */
	private int id;

	/**
	 * The file id of the avatar
	 */
	private Integer avatar;

	/**
	 * List of fields
	 */
	// private List> fields;

	@JsonProperty("user_id")
	public int getId() {
		return id;
	}

	@JsonProperty("user_id")
	public void setId(int id) {
		this.id = id;
	}

	public Integer getAvatar() {
		return avatar;
	}

	public void setAvatar(Integer avatar) {
		this.avatar = avatar;
	}

	// public List> getFields() {
	// return fields;
	// }
	//
	// public void setFields(List> fields) {
	// this.fields = fields;
	// }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy