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

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy