
com.podio.contact.ProfileMini 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
The newest version!
package com.podio.contact;
public class ProfileMini extends ProfileBase {
private static final long serialVersionUID = 1L;
private Integer avatar;
private String name;
@Override
public String toString() {
return "ProfileMini [profileId=" + getProfileId() + ", avatar="
+ avatar + ", name=" + name + "]";
}
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