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

com.github.debugthug.xo.Errors Maven / Gradle / Ivy

package com.github.debugthug.xo;

import com.thoughtworks.xstream.annotations.XStreamAlias;
import com.thoughtworks.xstream.annotations.XStreamAsAttribute;

@XStreamAlias("Errors")
public class Errors {

	@XStreamAsAttribute
	@XStreamAlias("Status")
	private String status;
	
	@XStreamAlias("Error")
	private Errorr error;

	public String getStatus() {
		return status;
	}

	public void setStatus(String status) {
		this.status = status;
	}

	public Errorr getError() {
		return error;
	}

	public void setError(Errorr error) {
		this.error = error;
	}
	
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy