/* Options: Date: 2026-06-14 21:34:57 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: GetSaleRepsRequest.* //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/site/{siteId}/brand/{brandTrigram}/GetSaleReps", Verbs="GET") public static class GetSaleRepsRequest extends BaseRequest implements IReturn { public Integer siteId = null; public String brandTrigram = null; public UUID customerId = null; public Integer getSiteId() { return siteId; } public GetSaleRepsRequest setSiteId(Integer value) { this.siteId = value; return this; } public String getBrandTrigram() { return brandTrigram; } public GetSaleRepsRequest setBrandTrigram(String value) { this.brandTrigram = value; return this; } public UUID getCustomerId() { return customerId; } public GetSaleRepsRequest setCustomerId(UUID value) { this.customerId = value; return this; } private static Object responseType = GetSaleRepsResponse.class; public Object getResponseType() { return responseType; } } public static class GetSaleRepsResponse extends BaseResponse { public ResponseStatus ResponseStatus = null; public ArrayList staff = null; public ResponseStatus getResponseStatus() { return ResponseStatus; } public GetSaleRepsResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } public ArrayList getStaff() { return staff; } public GetSaleRepsResponse setStaff(ArrayList value) { this.staff = 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 BaseResponse implements IRespose { public String _xmlns = null; public String _type = null; public String _source = null; public String _tstamp = null; public String _user = null; public String _env = null; public String _uri = null; public String _query = null; public String getXmlns() { return _xmlns; } public BaseResponse setXmlns(String value) { this._xmlns = value; return this; } public String getType() { return _type; } public BaseResponse setType(String value) { this._type = value; return this; } public String getSource() { return _source; } public BaseResponse setSource(String value) { this._source = value; return this; } public String getTstamp() { return _tstamp; } public BaseResponse setTstamp(String value) { this._tstamp = value; return this; } public String getUser() { return _user; } public BaseResponse setUser(String value) { this._user = value; return this; } public String getEnv() { return _env; } public BaseResponse setEnv(String value) { this._env = value; return this; } public String getUri() { return _uri; } public BaseResponse setUri(String value) { this._uri = value; return this; } public String getQuery() { return _query; } public BaseResponse setQuery(String value) { this._query = value; return this; } } public static interface IRespose { public String _xmlns = null; public String _type = null; public String _source = null; public String _tstamp = null; public String _user = null; public String _env = null; public String _uri = null; public String _query = null; } public static class User implements ILookupString { public String object = null; public String id = null; public String brand = null; public String displayName = null; public String getObject() { return object; } public User setObject(String value) { this.object = value; return this; } public String getId() { return id; } public User setId(String value) { this.id = value; return this; } public String getBrand() { return brand; } public User setBrand(String value) { this.brand = value; return this; } public String getDisplayName() { return displayName; } public User setDisplayName(String value) { this.displayName = value; return this; } } public static interface ILookupString { public String object = null; public String id = null; } }