panda.tube.freshdesk.Error Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of panda-tube-freshdesk Show documentation
Show all versions of panda-tube-freshdesk Show documentation
Panda Tube Freshdesk is a Web Service API client for Freshdesk.
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