/* Options: Date: 2025-08-05 02:24:47 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://www.asg.com.au/RestApi //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: DECMonitorContentAnalysisDto.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/sitefinity/data-intelligence/enable-content-analysis", Verbs="POST") open class DECEnableContentAnalysisDto : IReturn { var Progress:Int? = null var DataCenterApiKey:String? = null var SiteNames:ArrayList = ArrayList() var StatusMessage:String? = null companion object { private val responseType = DECEnableContentAnalysisDto::class.java } override fun getResponseType(): Any? = DECEnableContentAnalysisDto.responseType } @Route(Path="/sitefinity/data-intelligence/content-analysis-progress", Verbs="GET") open class DECMonitorContentAnalysisDto : IReturn { var DataCenterProgress:ArrayList = ArrayList() companion object { private val responseType = DECMonitorContentAnalysisDto::class.java } override fun getResponseType(): Any? = DECMonitorContentAnalysisDto.responseType }