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

com.afkl.generic.mashery.model.MasheryErrorSet Maven / Gradle / Ivy

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;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy