com.podio.space.SpaceCreateResponse 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 SpaceCreateResponse {
/**
* The id of the newly created space
*/
private int id;
/**
* The full URL of the new space
*/
private String url;
public int getId() {
return id;
}
@JsonProperty("space_id")
public void setId(int id) {
this.id = id;
}
public String getUrl() {
return url;
}
public void setUrl(String url) {
this.url = url;
}
}