/* Options: Date: 2025-10-27 22:02:07 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: GetTablesForCatalog.* //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/catalog/{TableCatalog}", Verbs="GET") public static class GetTablesForCatalog implements IReturn> { public String TableCatalog = null; public Paging Paging = null; public String getTableCatalog() { return TableCatalog; } public GetTablesForCatalog setTableCatalog(String value) { this.TableCatalog = value; return this; } public Paging getPaging() { return Paging; } public GetTablesForCatalog setPaging(Paging value) { this.Paging = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } public static class Paging { public Integer PageNumber = null; public Integer PageSize = null; public Integer getPageNumber() { return PageNumber; } public Paging setPageNumber(Integer value) { this.PageNumber = value; return this; } public Integer getPageSize() { return PageSize; } public Paging setPageSize(Integer value) { this.PageSize = value; return this; } } }