/* Options: Date: 2025-10-28 00:27:19 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://duengageapi.uat.scadsoftware.com //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: AddTableRecordRequest.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.*; import java.util.*; import java.io.InputStream; import net.servicestack.client.*; public class dtos { @Route(Path="/scadmeta/tables/{TablesId}/add", Verbs="POST") public static class AddTableRecordRequest implements IReturn { /** * Table id */ @ApiMember(Description="Table id", IsRequired=true) public Integer TablesId = null; /** * Parameter list */ @ApiMember(Description="Parameter list") public HashMap ParameterList = null; /** * Global parameter list */ @ApiMember(Description="Global parameter list") public HashMap GlobalParamList = null; /** * View id */ @ApiMember(Description="View id") public Integer ViewId = null; /** * Whether or not to refresh the cache */ @ApiMember(Description="Whether or not to refresh the cache") public Boolean RefreshCache = null; public Integer getTablesId() { return TablesId; } public AddTableRecordRequest setTablesId(Integer value) { this.TablesId = value; return this; } public HashMap getParameterList() { return ParameterList; } public AddTableRecordRequest setParameterList(HashMap value) { this.ParameterList = value; return this; } public HashMap getGlobalParamList() { return GlobalParamList; } public AddTableRecordRequest setGlobalParamList(HashMap value) { this.GlobalParamList = value; return this; } public Integer getViewId() { return ViewId; } public AddTableRecordRequest setViewId(Integer value) { this.ViewId = value; return this; } public Boolean isRefreshCache() { return RefreshCache; } public AddTableRecordRequest setRefreshCache(Boolean value) { this.RefreshCache = value; return this; } private static Object responseType = Object.class; public Object getResponseType() { return responseType; } } }