
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
The newest version!
package com.podio.app;
import org.codehaus.jackson.annotate.JsonProperty;
public class ApplicationField extends ApplicationFieldCreate {
private static final long serialVersionUID = 1L;
/**
* The id of the field
*/
private int id;
/**
* The external id of the field
*/
private String externalId;
/**
* Indicates if the field was deleted in Podio - values include "active" and "deleted".
*/
private ApplicationFieldStatus status;
@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;
}
@JsonProperty("status")
public ApplicationFieldStatus getStatus() {
return status;
}
@JsonProperty("status")
public void setStatus(ApplicationFieldStatus status) {
this.status = status;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy