/* Options: Date: 2025-11-09 11:12:02 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: GetLookup.* //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="/qry/lookups") public static class GetLookup implements IReturn { public String id = null; public String getId() { return id; } public GetLookup setId(String value) { this.id = value; return this; } private static Object responseType = Lookup.class; public Object getResponseType() { return responseType; } } public static class Lookup { public String id = null; public ArrayList data = null; public String getId() { return id; } public Lookup setId(String value) { this.id = value; return this; } public ArrayList getData() { return data; } public Lookup setData(ArrayList value) { this.data = value; return this; } } public static class LookupItem { public String id = null; public String value = null; public String tag = null; public String getId() { return id; } public LookupItem setId(String value) { this.id = value; return this; } public String getValue() { return value; } public LookupItem setValue(String value) { this.value = value; return this; } public String getTag() { return tag; } public LookupItem setTag(String value) { this.tag = value; return this; } } }