/* Options: Date: 2026-08-01 11:44:00 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: SafetyComplianceRequest.* //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/safety/compliance", Verbs="GET,OPTIONS") open class SafetyComplianceRequest : IReturn { open var Days:Int? = null companion object { private val responseType = SafetyComplianceResponse::class.java } override fun getResponseType(): Any? = SafetyComplianceRequest.responseType } open class SafetyComplianceResponse { open var ResponseStatus:ResponseStatus? = null open var Kpis:SafetyComplianceKpis? = null open var Projects:ArrayList = ArrayList() open var Trend:ArrayList = ArrayList() open var IncidentMix:ArrayList = ArrayList() open var MissingTalks:ArrayList = ArrayList() } open class SafetyComplianceKpis { open var ParticipationPct:Int? = null open var OpenIncidents:Int? = null open var OverdueCAs:Int? = null open var Recordables12mo:Int? = null open var DaysWithoutRecordable:Int? = null open var ProjectsWithTalkToday:Int? = null open var ProjectsWithCrewToday:Int? = null } open class SafetyComplianceProject { open var ProjectID:Int? = null open var ProjectUID:String? = null open var ProjectName:String? = null open var Branch:String? = null open var CrewCount:Int? = null open var HasTalkToday:Boolean? = null open var TalkAckPct:Int? = null open var OpenIncidents:Int? = null open var OverdueCAs:Int? = null open var Recordables12mo:Int? = null } open class SafetyTrendWeek { open var WeekStart:String? = null open var Acks:Int? = null open var Roster:Int? = null } open class SafetyIncidentMixRow { open var Severity:String? = null open var Cnt:Int? = null } open class SafetyMissingTalk { open var ProjectID:Int? = null open var ProjectUID:String? = null open var ProjectName:String? = null open var CrewCount:Int? = null }