
com.podio.user.UserProfileMini 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.user;
import org.codehaus.jackson.annotate.JsonProperty;
public class UserProfileMini {
private int id;
private Integer avatar;
private String name;
@Override
public String toString() {
return "UserMini [id=" + id + ", avatar=" + avatar + ", name=" + name
+ "]";
}
@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 String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy