/* Options: Date: 2026-07-08 19:43:14 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.dev.dynamics.trendsic.com //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: CertifiedPayrollSubmitRequest.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.* import java.util.* import java.io.InputStream import net.servicestack.client.* @Route(Path="/v1/projects/{ProjectID}/certified-payroll/{Week}/submit", Verbs="POST,OPTIONS") open class CertifiedPayrollSubmitRequest : IReturn { open var ProjectID:Int? = null open var Week:String? = null companion object { private val responseType = CertifiedPayrollResponse::class.java } override fun getResponseType(): Any? = CertifiedPayrollSubmitRequest.responseType } open class CertifiedPayrollResponse { open var ResponseStatus:ResponseStatus? = null open var Payroll:CertifiedPayroll? = null } open class CertifiedPayrollLine { open var CertifiedPayrollLineID:Int? = null open var CertifiedPayrollID:Int? = null open var WorkerName:String? = null open var ContactID:Int? = null open var Classification:String? = null open var HoursST:BigDecimal? = null open var HoursOT:BigDecimal? = null open var BaseRate:BigDecimal? = null open var FringeRate:BigDecimal? = null open var FringeCashRate:BigDecimal? = null open var FringePlanRate:BigDecimal? = null open var GrossPay:BigDecimal? = null open var Flagged:Boolean? = null open var RestitutionAmount:BigDecimal? = null open var RestitutionNote:String? = null open var RequiredBase:BigDecimal? = null open var RequiredFringe:BigDecimal? = null open var SortOrder:Int? = null } open class CertifiedPayroll { open var CertifiedPayrollID:Int? = null open var CertifiedPayrollUID:UUID? = null open var ProjectID:Int? = null open var PayrollNumber:Int? = null open var WeekEnding:Date? = null open var Status:String? = null open var DbeParticipationPct:BigDecimal? = null open var DbeGoalPct:BigDecimal? = null open var OjtApprenticeHours:BigDecimal? = null open var OjtApprenticeGoalHours:BigDecimal? = null open var WorkerCount:Int? = null open var TotalHoursST:BigDecimal? = null open var TotalHoursOT:BigDecimal? = null open var TotalGrossPay:BigDecimal? = null open var FlaggedCount:Int? = null open var SubmittedBy:String? = null open var SubmittedAt:Date? = null open var CreatedBy:String? = null open var CreatedAt:Date? = null open var UpdatedAt:Date? = null open var Lines:ArrayList = ArrayList() open var DeterminationNo:String? = null open var DeterminationType:String? = null }