/* Options: Date: 2025-07-17 23:46:03 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: SiteContentGetReq.* //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("/content/{Country}/{Lang}") // @Route("/content/{Preview}/{Country}/{Lang}") public static class SiteContentGetReq implements IReturn> { public String country = null; public String lang = null; public String preview = null; public String environment = null; public String getCountry() { return country; } public SiteContentGetReq setCountry(String value) { this.country = value; return this; } public String getLang() { return lang; } public SiteContentGetReq setLang(String value) { this.lang = value; return this; } public String getPreview() { return preview; } public SiteContentGetReq setPreview(String value) { this.preview = value; return this; } public String getEnvironment() { return environment; } public SiteContentGetReq setEnvironment(String value) { this.environment = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } }