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

com.github.debugthug.xo.fareRules.FareRulesRS Maven / Gradle / Ivy

package com.github.debugthug.xo.fareRules;

import com.github.debugthug.xo.Errors;
import com.thoughtworks.xstream.annotations.XStreamAlias;

@XStreamAlias("FareRulesRS")
public class FareRulesRS {
	
	@XStreamAlias("FareRules")
	private String fareRules;
	
	@XStreamAlias("Errors")
	private Errors errors;
	

	public Errors getErrors() {
		return errors;
	}

	public void setErrors(Errors errors) {
		this.errors = errors;
	}

	public String getFareRules() {
		return fareRules;
	}

	public void setFareRules(String fareRules) {
		this.fareRules = fareRules;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy