/* Options: Date: 2026-02-26 07:12:04 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 key = null; public String value = null; public String description = null; public String getKey() { return key; } public AppConfigItem setKey(String value) { this.key = value; return this; } public String getValue() { return value; } public AppConfigItem setValue(String value) { this.value = value; return this; } public String getDescription() { return description; } public AppConfigItem setDescription(String value) { this.description = value; return this; } } }