
com.podio.contact.ProfileShort 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.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