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

com.youcruit.billogram.objects.response.error.ErrorData Maven / Gradle / Ivy

There is a newer version: 1.0.3
Show newest version
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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy