/* Options: Date: 2026-07-08 19:42:33 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: SafetyRollupRequest.* //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/rollup", Verbs="GET,OPTIONS") open class SafetyRollupRequest : IReturn { companion object { private val responseType = SafetyRollupResponse::class.java } override fun getResponseType(): Any? = SafetyRollupRequest.responseType } open class SafetyRollupResponse { open var ResponseStatus:ResponseStatus? = null open var Summary:SafetySummary? = null } open class SafetySummary { open var DaysWithoutRecordable:Int? = null open var Trir:BigDecimal? = null open var OpenIncidents:Int? = null open var Recordables12mo:Int? = null open var ObservationsMonth:Int? = null open var ToolboxTalksWeek:Int? = null open var ToolboxAckPct:Int? = null open var OpenCorrectiveActions:Int? = null }