com.afkl.generic.mashery.model.MasheryErrorSet Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mashery-sdk Show documentation
Show all versions of mashery-sdk Show documentation
SDK built on top of Intel-Mashery's V3 API.
The newest version!
package com.afkl.generic.mashery.model;
import java.util.List;
public class MasheryErrorSet {
private String name;
private String type;
private boolean jsonp;
private String jsonpType;
private List errorMessages;
public String getName() {
return name;
}
public String getType() {
return type;
}
public boolean isJsonp() {
return jsonp;
}
public String getJsonpType() {
return jsonpType;
}
public List getErrorMessages() {
return errorMessages;
}
}