/* Options: Date: 2026-06-14 21:35:23 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://qp-microservices-booster.richemont.com //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: GetBrandPrivacyPolicy.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class dtos { @Route(Path="/warranty/v1/GetBrandPrivacyPolicy", Verbs="POST") public static class GetBrandPrivacyPolicy extends BaseRequest implements IReturn { public String countryId = null; public String languageId = null; public String brandTrigram = null; public Integer posId = null; public String getCountryId() { return countryId; } public GetBrandPrivacyPolicy setCountryId(String value) { this.countryId = value; return this; } public String getLanguageId() { return languageId; } public GetBrandPrivacyPolicy setLanguageId(String value) { this.languageId = value; return this; } public String getBrandTrigram() { return brandTrigram; } public GetBrandPrivacyPolicy setBrandTrigram(String value) { this.brandTrigram = value; return this; } public Integer getPosId() { return posId; } public GetBrandPrivacyPolicy setPosId(Integer value) { this.posId = value; return this; } private static Object responseType = String.class; public Object getResponseType() { return responseType; } } public static class BaseRequest implements IRequest { public String sid = null; public String app = null; public String _os = null; public String _appVersion = null; public String _searchMethod = null; public String getSid() { return sid; } public BaseRequest setSid(String value) { this.sid = value; return this; } public String getApp() { return app; } public BaseRequest setApp(String value) { this.app = value; return this; } public String getOs() { return _os; } public BaseRequest setOs(String value) { this._os = value; return this; } public String getAppVersion() { return _appVersion; } public BaseRequest setAppVersion(String value) { this._appVersion = value; return this; } public String getSearchMethod() { return _searchMethod; } public BaseRequest setSearchMethod(String value) { this._searchMethod = value; return this; } } public static interface IRequest { public String sid = null; public String app = null; } }