com.podio.space.SpaceTopMemberGroup 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.space;
import java.util.List;
import com.podio.contact.ProfileMini;
public class SpaceTopMemberGroup {
private List profiles;
private int left;
public List getProfiles() {
return profiles;
}
public void setProfiles(List profiles) {
this.profiles = profiles;
}
public int getLeft() {
return left;
}
public void setLeft(int left) {
this.left = left;
}
}