/* Options: Date: 2025-10-28 00:52: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: GetTableRecordsByIdRequest.* //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}/data/{Id}", Verbs="GET, POST") public static class GetTableRecordsByIdRequest implements IReturn { /** * Table id */ @ApiMember(Description="Table id", IsRequired=true) public Integer TablesId = null; /** * Primary Key */ @ApiMember(Description="Primary Key", IsRequired=true) public Integer Id = null; /** * Primary Key */ @ApiMember(Description="Primary Key", IsRequired=true) public UUID RowGuid = null; /** * Filter list */ @ApiMember(Description="Filter list") public HashMap FilterList = null; public Integer getTablesId() { return TablesId; } public GetTableRecordsByIdRequest setTablesId(Integer value) { this.TablesId = value; return this; } public Integer getId() { return Id; } public GetTableRecordsByIdRequest setId(Integer value) { this.Id = value; return this; } public UUID getRowGuid() { return RowGuid; } public GetTableRecordsByIdRequest setRowGuid(UUID value) { this.RowGuid = value; return this; } public HashMap getFilterList() { return FilterList; } public GetTableRecordsByIdRequest setFilterList(HashMap value) { this.FilterList = value; return this; } private static Object responseType = GetTableRecordsByIdResponse.class; public Object getResponseType() { return responseType; } } public static class GetTableRecordsByIdResponse { public ResponseStatus ResponseStatus = null; public ResponseStatus getResponseStatus() { return ResponseStatus; } public GetTableRecordsByIdResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } } }