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

panda.tube.freshdesk.Error Maven / Gradle / Ivy

There is a newer version: 1.8.0
Show newest version
package panda.tube.freshdesk;

import panda.bind.json.Jsons;

public class Error {
	private String field;
	private String message;
	private String code;

	/**
	 * @return the field
	 */
	public String getField() {
		return field;
	}

	/**
	 * @param field the field to set
	 */
	public void setField(String field) {
		this.field = field;
	}

	/**
	 * @return the message
	 */
	public String getMessage() {
		return message;
	}

	/**
	 * @param message the message to set
	 */
	public void setMessage(String message) {
		this.message = message;
	}

	/**
	 * @return the code
	 */
	public String getCode() {
		return code;
	}

	/**
	 * @param code the code to set
	 */
	public void setCode(String code) {
		this.code = code;
	}

	/**
	 * {@inheritDoc}
	 */
	@Override
	public String toString() {
		return Jsons.toJson(this, true);
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy