com.youcruit.billogram.objects.response.error.ApiError 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 com.google.gson.annotations.Expose;
public class ApiError {
@Expose
private BillogramErrors status;
@Expose
private ErrorData data;
@Expose(serialize = false, deserialize = false)
private int httpStatusCode;
public BillogramErrors getStatus() {
return status;
}
public void setStatus(BillogramErrors status) {
this.status = status;
}
public ErrorData getData() {
return data;
}
public void setData(ErrorData data) {
this.data = data;
}
public void setHttpStatusCode(int httpStatusCode) {
this.httpStatusCode = httpStatusCode;
}
public int getHttpStatusCode() {
return httpStatusCode;
}
}