/* Options: Date: 2024-05-22 01:34:30 Version: 8.23 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://test.servicestack.net //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: AltQueryItems.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.*,com.google.gson.annotations.*,com.google.gson.reflect.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; import com.google.gson.annotations.*; import com.google.gson.reflect.*; public class dtos { public static class AltQueryItems implements IReturn> { public String name = null; public String getName() { return name; } public AltQueryItems setName(String value) { this.name = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } public static class QueryResponseAlt { public Integer offset = null; public Integer total = null; public ArrayList results = null; public HashMap meta = null; public ResponseStatus responseStatus = null; public Integer getOffset() { return offset; } public QueryResponseAlt setOffset(Integer value) { this.offset = value; return this; } public Integer getTotal() { return total; } public QueryResponseAlt setTotal(Integer value) { this.total = value; return this; } public ArrayList getResults() { return results; } public QueryResponseAlt setResults(ArrayList value) { this.results = value; return this; } public HashMap getMeta() { return meta; } public QueryResponseAlt setMeta(HashMap value) { this.meta = value; return this; } public ResponseStatus getResponseStatus() { return responseStatus; } public QueryResponseAlt setResponseStatus(ResponseStatus value) { this.responseStatus = value; return this; } } }