com.ebay.clients.models.ErrorResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ebay-sdk Show documentation
Show all versions of ebay-sdk Show documentation
Java SDK for eBay REST APIs
package com.ebay.clients.models;
import java.util.LinkedList;
import java.util.List;
public class ErrorResponse {
private List errors = new LinkedList<>();
public List getErrors() {
return errors;
}
public void setErrors(List errors) {
this.errors = errors;
}
public boolean hasErrors() {
return !errors.isEmpty();
}
}