com.podio.space.SpaceMini 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.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;
}
}