/* Options: Date: 2025-07-18 00:20:39 Version: 6.40 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://hcbtas-q-albamfs-api.azurewebsites.net //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: ListItemAnyReq.* //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 { @Route("/faq/{Country}") // @Route("/faq/{ListId}/{Country}") public static class ListItemAnyReq implements IReturn> { public String listId = null; public String country = null; public String getListId() { return listId; } public ListItemAnyReq setListId(String value) { this.listId = value; return this; } public String getCountry() { return country; } public ListItemAnyReq setCountry(String value) { this.country = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } }