io.payrun.models.ReportLine Maven / Gradle / Ivy
package io.payrun.models;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonRootName;
@JsonRootName(value = "ReportLine")
public class ReportLine
{
@JsonProperty(value="Value")
public java.lang.Double value = 0d;;
@JsonProperty(value="Description")
public String description;
@JsonProperty(value="Generated")
public java.util.Date generated;
@JsonProperty(value="TaxYear")
public java.lang.Short taxYear;
@JsonProperty(value="TaxMonth")
public java.lang.Short taxMonth;
}