/* Options: Date: 2026-06-14 21:34:08 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: GetPromoterTypes.* //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/promotertypes/{promoterTypeId*}", Verbs="GET") public static class GetPromoterTypes extends BaseRequest implements IReturn { public String promoterTypeId = null; public String getPromoterTypeId() { return promoterTypeId; } public GetPromoterTypes setPromoterTypeId(String value) { this.promoterTypeId = value; return this; } private static Object responseType = GetPromoterTypesResponse.class; public Object getResponseType() { return responseType; } } public static class GetPromoterTypesResponse { public ArrayList promoterTypes = null; public ArrayList getPromoterTypes() { return promoterTypes; } public GetPromoterTypesResponse setPromoterTypes(ArrayList value) { this.promoterTypes = value; return this; } } 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; } public static class PromoterType { public String promoterTypeId = null; public String description = null; public String getPromoterTypeId() { return promoterTypeId; } public PromoterType setPromoterTypeId(String value) { this.promoterTypeId = value; return this; } public String getDescription() { return description; } public PromoterType setDescription(String value) { this.description = value; return this; } } }