com.youcruit.billogram.objects.response.error.ErrorData Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of billogram-v2-api-java-lib Show documentation
Show all versions of billogram-v2-api-java-lib Show documentation
Library for connecting to the Billogram v2 API
package com.youcruit.billogram.objects.response.error;
import java.util.List;
import com.google.gson.annotations.Expose;
import com.google.gson.annotations.SerializedName;
public class ErrorData {
@Expose
private String message;
@Expose
private String field;
@Expose
@SerializedName("field_path")
private List fieldPath;
public String getMessage() {
return message;
}
public void setMessage(String message) {
this.message = message;
}
public String getField() {
return field;
}
public void setField(String field) {
this.field = field;
}
public List getFieldPath() {
return fieldPath;
}
public void setFieldPath(List fieldPath) {
this.fieldPath = fieldPath;
}
}