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

panda.ex.slack.Field Maven / Gradle / Ivy

package panda.ex.slack;

public class Field {
	private String title;
	private String value;
	private String short_;
	/**
	 * @return the title
	 */
	public String getTitle() {
		return title;
	}
	/**
	 * @param title the title to set
	 */
	public void setTitle(String title) {
		this.title = title;
	}
	/**
	 * @return the value
	 */
	public String getValue() {
		return value;
	}
	/**
	 * @param value the value to set
	 */
	public void setValue(String value) {
		this.value = value;
	}
	/**
	 * @return the short_
	 */
	public String getShort() {
		return short_;
	}
	/**
	 * @param short_ the short_ to set
	 */
	public void setShort(String short_) {
		this.short_ = short_;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy