com.podio.app.ApplicationField 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.app;
import org.codehaus.jackson.annotate.JsonProperty;
public class ApplicationField extends ApplicationFieldCreate {
/**
* The id of the field
*/
private int id;
/**
* The external id of the field
*/
private String externalId;
@JsonProperty("field_id")
public int getId() {
return id;
}
@JsonProperty("field_id")
public void setId(int id) {
this.id = id;
}
public String getExternalId() {
return externalId;
}
@JsonProperty("external_id")
public void setExternalId(String externalId) {
this.externalId = externalId;
}
}