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

com.podio.app.ApplicationCreateResponse Maven / Gradle / Ivy

package com.podio.app;

import org.codehaus.jackson.annotate.JsonProperty;

public class ApplicationCreateResponse {

	/**
	 * The id of the created app
	 */
	private int id;

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy