tech.deepdreams.worker.api.models.PayrollRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of worker-api Show documentation
Show all versions of worker-api Show documentation
Payroll Worker API project for Java 17
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;
}
}