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

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

package com.github.debugthug.xo.fareRules;

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

@XStreamAlias("FareRulesRQ")
public class FareRulesRQ {

	@XStreamAlias("Authenticate")
	private Authenticate authenticate;
	
	@XStreamAlias("FareBasisCode")
	private String fareBasisCode;

	public Authenticate getAuthenticate() {
		return authenticate;
	}

	public void setAuthenticate(Authenticate authenticate) {
		this.authenticate = authenticate;
	}

	public String getFareBasisCode() {
		return fareBasisCode;
	}

	public void setFareBasisCode(String fareBasisCode) {
		this.fareBasisCode = fareBasisCode;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy