
com.podio.contact.UserContactTotal 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 java.util.List;
public class UserContactTotal {
private List organizations;
private int count;
public List getOrganizations() {
return organizations;
}
public void setOrganizations(List organizations) {
this.organizations = organizations;
}
public int getCount() {
return count;
}
public void setCount(int count) {
this.count = count;
}
}