
com.podio.org.OrganizationWithSpaces Maven / Gradle / Ivy
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;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy