/* Options: Date: 2026-04-12 11:31:07 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://etc-api.vsmlab.vn //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: UpdateAppConfigsBySection.* //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="/app-configs/{Section}", Verbs="POST") public static class UpdateAppConfigsBySection implements IReturn { public AppConfigSection section = null; public ArrayList items = null; public AppConfigSection getSection() { return section; } public UpdateAppConfigsBySection setSection(AppConfigSection value) { this.section = value; return this; } public ArrayList getItems() { return items; } public UpdateAppConfigsBySection setItems(ArrayList value) { this.items = value; return this; } private static Object responseType = Object.class; public Object getResponseType() { return responseType; } } public static enum AppConfigSection { AppInfo, Smtp, Keycloak; } public static class AppConfigItem { public String configKey = null; public String configValue = null; public String description = null; public String getConfigKey() { return configKey; } public AppConfigItem setConfigKey(String value) { this.configKey = value; return this; } public String getConfigValue() { return configValue; } public AppConfigItem setConfigValue(String value) { this.configValue = value; return this; } public String getDescription() { return description; } public AppConfigItem setDescription(String value) { this.description = value; return this; } } }