![JAR search and dependency download from the Maven repository](/logo.png)
io.payrun.models.PayLineSsp Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sdk Show documentation
Show all versions of sdk Show documentation
Java SDK for accessing the UK Payroll API - PayRun.io
package io.payrun.models;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonRootName;
@JsonRootName(value = "PayLineSsp")
public class PayLineSsp extends PayLine
{
@JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "yyyy-MM-dd")
@JsonProperty(value="AbsenceStart")
public java.util.Date absenceStart;
@JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "yyyy-MM-dd")
@JsonProperty(value="AbsenceEnd")
public java.util.Date absenceEnd;
@JsonProperty(value="AverageWeeklyEarnings")
public java.lang.Double averageWeeklyEarnings = 0d;;
@JsonProperty(value="WaitingDaysServed")
public java.lang.Integer waitingDaysServed;
@JsonProperty(value="QualifyingDays")
public java.lang.Integer qualifyingDays;
@JsonProperty(value="DailyRate")
public java.lang.Double dailyRate = 0d;;
@JsonProperty(value="WeeksUsed")
public java.lang.Double weeksUsed = 0d;;
@JsonProperty(value="ExclusionReason")
public SspExclusionReason exclusionReason = SspExclusionReason.None;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy