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

com.sentenial.rest.client.api.error.ErrorDetail Maven / Gradle / Ivy

There is a newer version: 1.0.27.RELEASE
Show newest version
package com.sentenial.rest.client.api.error;

public class ErrorDetail {

	private String code;
	private String description;
    private String field;

	public String getCode() {
		return code;
	}
	public void setCode(String code) {
		this.code = code;
	}
	public String getDescription() {
		return description;
	}
	public void setDescription(String description) {
		this.description = description;
	}
	public String getField() {
		return field;
	}
	public void setField(String field) {
		this.field = field;
	}


	@Override
	public String toString() {
		return "ErrorDetail [code=" + code + ", description=" + description + ", field=" + field + "]";
	}


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy