/* Options: Date: 2025-08-05 02:33:55 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://www.asg.com.au/RestApi //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: DECSettingsRequestDto.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class dtos { @Route(Path="/sitefinity/data-intelligence/settings", Verbs="GET") public static class DECSettingsRequestDto implements IReturn { private static Object responseType = DECSettingsDto.class; public Object getResponseType() { return responseType; } } public static class DECSettingsDto { public Boolean IsDecEnabled = null; public Boolean AccessKeyStrategyUsed = null; public String AuthorizationHeader = null; public String ApiServerUrl = null; public String DecAppUrl = null; public String DataCenterApiKey = null; public String LicenseType = null; public String DecAdminBackendPageUrl = null; public ArrayList ContentAnalyticsApiKeys = null; public Boolean getIsDecEnabled() { return IsDecEnabled; } public DECSettingsDto setIsDecEnabled(Boolean value) { this.IsDecEnabled = value; return this; } public Boolean isAccessKeyStrategyUsed() { return AccessKeyStrategyUsed; } public DECSettingsDto setAccessKeyStrategyUsed(Boolean value) { this.AccessKeyStrategyUsed = value; return this; } public String getAuthorizationHeader() { return AuthorizationHeader; } public DECSettingsDto setAuthorizationHeader(String value) { this.AuthorizationHeader = value; return this; } public String getApiServerUrl() { return ApiServerUrl; } public DECSettingsDto setApiServerUrl(String value) { this.ApiServerUrl = value; return this; } public String getDecAppUrl() { return DecAppUrl; } public DECSettingsDto setDecAppUrl(String value) { this.DecAppUrl = value; return this; } public String getDataCenterApiKey() { return DataCenterApiKey; } public DECSettingsDto setDataCenterApiKey(String value) { this.DataCenterApiKey = value; return this; } public String getLicenseType() { return LicenseType; } public DECSettingsDto setLicenseType(String value) { this.LicenseType = value; return this; } public String getDecAdminBackendPageUrl() { return DecAdminBackendPageUrl; } public DECSettingsDto setDecAdminBackendPageUrl(String value) { this.DecAdminBackendPageUrl = value; return this; } public ArrayList getContentAnalyticsApiKeys() { return ContentAnalyticsApiKeys; } public DECSettingsDto setContentAnalyticsApiKeys(ArrayList value) { this.ContentAnalyticsApiKeys = value; return this; } } }