com.podio.org.OrganizationWithSpaces 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.org;
import java.util.List;
import org.codehaus.jackson.annotate.JsonProperty;
import com.podio.space.SpaceMini;
public class OrganizationWithSpaces extends OrganizationMini {
/**
* true
if the user has the right to create new spaces,
* false
otherwise
*/
private String createRight;
/**
* The list of spaces in the organization that the user has access to
*/
private List spaces;
@JsonProperty("create_right")
public String getCreateRight() {
return createRight;
}
@JsonProperty("create_right")
public void setCreateRight(String createRight) {
this.createRight = createRight;
}
public List getSpaces() {
return spaces;
}
public void setSpaces(List spaces) {
this.spaces = spaces;
}
}