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

com.podio.space.SpaceMini Maven / Gradle / Ivy

There is a newer version: 0.7.9
Show newest version
package com.podio.space;

import org.codehaus.jackson.annotate.JsonProperty;

public class SpaceMini {

	/**
	 * The id of the space
	 */
	private int id;

	/**
	 * The name of the space
	 */
	private String name;

	/**
	 * The full URL of the space, f.ex. https://company.podio.com/intranet
	 */
	private String url;

	@JsonProperty("space_id")
	public int getId() {
		return id;
	}

	@JsonProperty("space_id")
	public void setId(int id) {
		this.id = id;
	}

	public String getName() {
		return name;
	}

	public void setName(String name) {
		this.name = name;
	}

	public String getUrl() {
		return url;
	}

	public void setUrl(String url) {
		this.url = url;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy