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

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

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