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

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

There is a newer version: 0.7.9
Show newest version
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;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy