/* Options: Date: 2025-08-05 02:38:52 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: DECEnableContentAnalysisDto.* //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 }