com.podio.contact.SpaceContactTotal 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 com.podio.space.Space;
public class SpaceContactTotal {
private Space space;
private int count;
public Space getSpace() {
return space;
}
public void setSpace(Space space) {
this.space = space;
}
public int getCount() {
return count;
}
public void setCount(int count) {
this.count = count;
}
}