All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.podio.org.OrganizationWithSpaces Maven / Gradle / Ivy

There is a newer version: 0.7.9
Show newest version
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 - 2024 Weber Informatics LLC | Privacy Policy