/* Options: Date: 2025-10-28 02:10:36 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: MetaQueriesEdit.* //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/meta_queries/{Id}", Verbs="PUT") @DataContract public static class MetaQueriesEdit implements IReturn { @DataMember(Order=1) public Integer Id = null; @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 Integer getId() { return Id; } public MetaQueriesEdit setId(Integer value) { this.Id = value; return this; } public Short getDbTechnologiesId() { return DbTechnologiesId; } public MetaQueriesEdit setDbTechnologiesId(Short value) { this.DbTechnologiesId = value; return this; } public String getDescription() { return Description; } public MetaQueriesEdit setDescription(String value) { this.Description = value; return this; } public String getCommandText() { return CommandText; } public MetaQueriesEdit setCommandText(String value) { this.CommandText = value; return this; } public Short getCommandTypesId() { return CommandTypesId; } public MetaQueriesEdit setCommandTypesId(Short value) { this.CommandTypesId = value; return this; } public Boolean isCacheResult() { return CacheResult; } public MetaQueriesEdit setCacheResult(Boolean value) { this.CacheResult = value; return this; } public Integer getCachetimeInSeconds() { return CachetimeInSeconds; } public MetaQueriesEdit setCachetimeInSeconds(Integer value) { this.CachetimeInSeconds = value; return this; } public Integer getQueryTypesId() { return QueryTypesId; } public MetaQueriesEdit setQueryTypesId(Integer value) { this.QueryTypesId = value; return this; } public Short getDbTechnologyTemplatesId() { return DbTechnologyTemplatesId; } public MetaQueriesEdit setDbTechnologyTemplatesId(Short value) { this.DbTechnologyTemplatesId = value; return this; } public Date getLastModifiedDate() { return LastModifiedDate; } public MetaQueriesEdit setLastModifiedDate(Date value) { this.LastModifiedDate = value; return this; } public UUID getRowVersionGuid() { return RowVersionGuid; } public MetaQueriesEdit setRowVersionGuid(UUID value) { this.RowVersionGuid = value; return this; } public Boolean getIsEnabled() { return IsEnabled; } public MetaQueriesEdit setIsEnabled(Boolean value) { this.IsEnabled = value; return this; } public Short getConnectionsId() { return ConnectionsId; } public MetaQueriesEdit setConnectionsId(Short value) { this.ConnectionsId = value; return this; } private static Object responseType = MetaQueriesEditResponse.class; public Object getResponseType() { return responseType; } } public static class MetaQueriesEditResponse { @DataMember(Order=1) public Integer Id = null; @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; @DataMember(Order=15) public ResponseStatus ResponseStatus = null; public Integer getId() { return Id; } public MetaQueriesEditResponse setId(Integer value) { this.Id = value; return this; } public Short getDbTechnologiesId() { return DbTechnologiesId; } public MetaQueriesEditResponse setDbTechnologiesId(Short value) { this.DbTechnologiesId = value; return this; } public String getDescription() { return Description; } public MetaQueriesEditResponse setDescription(String value) { this.Description = value; return this; } public String getCommandText() { return CommandText; } public MetaQueriesEditResponse setCommandText(String value) { this.CommandText = value; return this; } public Short getCommandTypesId() { return CommandTypesId; } public MetaQueriesEditResponse setCommandTypesId(Short value) { this.CommandTypesId = value; return this; } public Boolean isCacheResult() { return CacheResult; } public MetaQueriesEditResponse setCacheResult(Boolean value) { this.CacheResult = value; return this; } public Integer getCachetimeInSeconds() { return CachetimeInSeconds; } public MetaQueriesEditResponse setCachetimeInSeconds(Integer value) { this.CachetimeInSeconds = value; return this; } public Integer getQueryTypesId() { return QueryTypesId; } public MetaQueriesEditResponse setQueryTypesId(Integer value) { this.QueryTypesId = value; return this; } public Short getDbTechnologyTemplatesId() { return DbTechnologyTemplatesId; } public MetaQueriesEditResponse setDbTechnologyTemplatesId(Short value) { this.DbTechnologyTemplatesId = value; return this; } public Date getLastModifiedDate() { return LastModifiedDate; } public MetaQueriesEditResponse setLastModifiedDate(Date value) { this.LastModifiedDate = value; return this; } public UUID getRowVersionGuid() { return RowVersionGuid; } public MetaQueriesEditResponse setRowVersionGuid(UUID value) { this.RowVersionGuid = value; return this; } public Boolean getIsEnabled() { return IsEnabled; } public MetaQueriesEditResponse setIsEnabled(Boolean value) { this.IsEnabled = value; return this; } public Short getConnectionsId() { return ConnectionsId; } public MetaQueriesEditResponse setConnectionsId(Short value) { this.ConnectionsId = value; return this; } public ResponseStatus getResponseStatus() { return ResponseStatus; } public MetaQueriesEditResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } } }