/* Options: Date: 2026-06-13 13:35:18 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://riskstoreng-dev.nephila.com/api //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetCacheStatusRequest.* //ExcludeTypes: //InitializeCollections: False //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="/riskstore/cache/status", Verbs="GET") open class GetCacheStatusRequest : IReturn, IGet { companion object { private val responseType = GetCacheStatusRespone::class.java } override fun getResponseType(): Any? = GetCacheStatusRequest.responseType } open class GetCacheStatusRespone { open var linking:Boolean? = null open var eventSource:Boolean? = null open var eventSourcePerspective:Boolean? = null open var metaRisk:Boolean? = null open var eventLosses:Boolean? = null open var responseStatus:ResponseStatus? = null }