/* Options: Date: 2025-11-08 10:58:56 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://s4w2.api.bettor.cc //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: GetDailyLocationStatsByHours.* //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="/qry/stats/daily-location-stats-by-hours") public static class GetDailyLocationStatsByHours extends PaginatedQueryRequest implements IReturn> { private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } public static class PaginatedResult implements IPaginatedResult { public ArrayList data = new ArrayList(); public Long currentPage = null; public Long pageSize = null; public Long totalItems = null; public Long totalPages = null; public ArrayList getData() { return data; } public PaginatedResult setData(ArrayList value) { this.data = value; return this; } public Long getCurrentPage() { return currentPage; } public PaginatedResult setCurrentPage(Long value) { this.currentPage = value; return this; } public Long getPageSize() { return pageSize; } public PaginatedResult setPageSize(Long value) { this.pageSize = value; return this; } public Long getTotalItems() { return totalItems; } public PaginatedResult setTotalItems(Long value) { this.totalItems = value; return this; } public Long getTotalPages() { return totalPages; } public PaginatedResult setTotalPages(Long value) { this.totalPages = value; return this; } } public static class PaginatedQueryRequest extends QueryRequest { public Integer currentPage = null; public Integer pageSize = null; public Integer getCurrentPage() { return currentPage; } public PaginatedQueryRequest setCurrentPage(Integer value) { this.currentPage = value; return this; } public Integer getPageSize() { return pageSize; } public PaginatedQueryRequest setPageSize(Integer value) { this.pageSize = value; return this; } } public static interface IPaginatedResult { public Long currentPage = null; public Long pageSize = null; public Long totalItems = null; public Long totalPages = null; } public static class QueryRequest { public HashMap qry = new HashMap(); public HashMap getQry() { return qry; } public QueryRequest setQry(HashMap value) { this.qry = value; return this; } } }