/* Options: Date: 2025-10-28 01:33:59 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: MetaQueriesLookup.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.*,com.google.gson.annotations.*,com.google.gson.reflect.* */ import java.math.*; import java.util.*; import java.io.InputStream; import net.servicestack.client.*; import com.google.gson.annotations.*; import com.google.gson.reflect.*; public class dtos { @Route(Path="/scadmeta/meta_queries", Verbs="GET") @DataContract public static class MetaQueriesLookup implements IReturn> { @DataMember(Order=2) public Short DbTechnologiesId = null; @DataMember(Order=3) public String Description = null; @DataMember(Order=4) public String CommandText = null; @DataMember(Order=5) public Short CommandTypesId = null; @DataMember(Order=6) public Boolean CacheResult = null; @DataMember(Order=7) public Integer CachetimeInSeconds = null; @DataMember(Order=8) public Integer QueryTypesId = null; @DataMember(Order=9) public Short DbTechnologyTemplatesId = null; @DataMember(Order=10) public Date LastModifiedDate = null; @DataMember(Order=11) public UUID RowVersionGuid = null; @DataMember(Order=12) public Boolean IsEnabled = null; @DataMember(Order=13) public Short ConnectionsId = null; public Short getDbTechnologiesId() { return DbTechnologiesId; } public MetaQueriesLookup setDbTechnologiesId(Short value) { this.DbTechnologiesId = value; return this; } public String getDescription() { return Description; } public MetaQueriesLookup setDescription(String value) { this.Description = value; return this; } public String getCommandText() { return CommandText; } public MetaQueriesLookup setCommandText(String value) { this.CommandText = value; return this; } public Short getCommandTypesId() { return CommandTypesId; } public MetaQueriesLookup setCommandTypesId(Short value) { this.CommandTypesId = value; return this; } public Boolean isCacheResult() { return CacheResult; } public MetaQueriesLookup setCacheResult(Boolean value) { this.CacheResult = value; return this; } public Integer getCachetimeInSeconds() { return CachetimeInSeconds; } public MetaQueriesLookup setCachetimeInSeconds(Integer value) { this.CachetimeInSeconds = value; return this; } public Integer getQueryTypesId() { return QueryTypesId; } public MetaQueriesLookup setQueryTypesId(Integer value) { this.QueryTypesId = value; return this; } public Short getDbTechnologyTemplatesId() { return DbTechnologyTemplatesId; } public MetaQueriesLookup setDbTechnologyTemplatesId(Short value) { this.DbTechnologyTemplatesId = value; return this; } public Date getLastModifiedDate() { return LastModifiedDate; } public MetaQueriesLookup setLastModifiedDate(Date value) { this.LastModifiedDate = value; return this; } public UUID getRowVersionGuid() { return RowVersionGuid; } public MetaQueriesLookup setRowVersionGuid(UUID value) { this.RowVersionGuid = value; return this; } public Boolean getIsEnabled() { return IsEnabled; } public MetaQueriesLookup setIsEnabled(Boolean value) { this.IsEnabled = value; return this; } public Short getConnectionsId() { return ConnectionsId; } public MetaQueriesLookup setConnectionsId(Short value) { this.ConnectionsId = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } }