
com.podio.app.ApplicationCreateResponse 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
The newest version!
package com.podio.app;
import java.io.Serializable;
import org.codehaus.jackson.annotate.JsonProperty;
public class ApplicationCreateResponse implements Serializable {
private static final long serialVersionUID = 1L;
/**
* 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 - 2025 Weber Informatics LLC | Privacy Policy