/* Options: Date: 2025-08-05 02:38:51 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: DECSettingsRequestDto.* //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/settings", Verbs="GET") open class DECSettingsRequestDto : IReturn { companion object { private val responseType = DECSettingsDto::class.java } override fun getResponseType(): Any? = DECSettingsRequestDto.responseType } open class DECSettingsDto { var IsDecEnabled:Boolean? = null var AccessKeyStrategyUsed:Boolean? = null var AuthorizationHeader:String? = null var ApiServerUrl:String? = null var DecAppUrl:String? = null var DataCenterApiKey:String? = null var LicenseType:String? = null var DecAdminBackendPageUrl:String? = null var ContentAnalyticsApiKeys:ArrayList = ArrayList() }