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

com.podio.item.ItemFieldDifference Maven / Gradle / Ivy

There is a newer version: 0.7.9
Show newest version
package com.podio.item;

import java.util.List;
import java.util.Map;

import org.codehaus.jackson.annotate.JsonProperty;

import com.podio.app.ApplicationFieldType;

public class ItemFieldDifference {

	/**
	 * The id of the field
	 */
	private int id;

	/**
	 * The type of the field
	 */
	private ApplicationFieldType type;

	/**
	 * The label of the field
	 */
	private String label;

	/**
	 * The values at the from revision
	 */
	private List> from;

	/**
	 * The values at the to revsion
	 */
	private List> to;

	public int getId() {
		return id;
	}

	@JsonProperty("field_id")
	public void setId(int fieldId) {
		this.id = fieldId;
	}

	public ApplicationFieldType getType() {
		return type;
	}

	public void setType(ApplicationFieldType type) {
		this.type = type;
	}

	public String getLabel() {
		return label;
	}

	public void setLabel(String label) {
		this.label = label;
	}

	public List> getFrom() {
		return from;
	}

	public void setFrom(List> from) {
		this.from = from;
	}

	public List> getTo() {
		return to;
	}

	public void setTo(List> to) {
		this.to = to;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy