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

tech.deepdreams.worker.api.models.PayrollRequest Maven / Gradle / Ivy

There is a newer version: 0.1.1-RELEASE
Show newest version
package tech.deepdreams.worker.api.models;
import java.util.ArrayList;
import java.util.List;

public class PayrollRequest {
	private String countryCode ;
	
	private int algoVersion ;
	
	private List constantValues = new ArrayList() ;
	
	private List advantagesInCash = new ArrayList() ;
	
	private List advantagesInKind = new ArrayList() ;
	
	public PayrollRequest() {}{
		
	}

	public String getCountryCode() {
		return countryCode;
	}

	public void setCountryCode(String countryCode) {
		this.countryCode = countryCode;
	}

	
	public int getAlgoVersion() {
		return algoVersion;
	}

	public void setAlgoVersion(int algoVersion) {
		this.algoVersion = algoVersion;
	}

	public List getConstantValues() {
		return constantValues;
	}

	public void setConstantValues(List constantValues) {
		this.constantValues = constantValues;
	}

	public List getAdvantagesInCash() {
		return advantagesInCash;
	}

	public void setAdvantagesInCash(List advantagesInCash) {
		this.advantagesInCash = advantagesInCash;
	}

	public List getAdvantagesInKind() {
		return advantagesInKind;
	}

	public void setAdvantagesInKind(List advantagesInKind) {
		this.advantagesInKind = advantagesInKind;
	}
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy