/* Options: Date: 2026-05-19 09:49:17 Version: 8.22 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://dev-api-booster.richemont.com //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: GetProductByHash.* //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="/hashlookup/{hash}", Verbs="GET") public static class GetProductByHash implements IReturn { /** * Hash String */ @ApiMember(Description="Hash String", IsRequired=true) public String hash = null; public String getHash() { return hash; } public GetProductByHash setHash(String value) { this.hash = value; return this; } private static Object responseType = GetProductByHashResponse.class; public Object getResponseType() { return responseType; } } public static class GetProductByHashResponse { /** * Article Code, which is more of Reference Id */ @ApiMember(Description="Article Code, which is more of Reference Id ", IsRequired=true) public String articleCode = null; /** * Serial Number */ @ApiMember(Description="Serial Number", IsRequired=true) public String serialNumber = null; public String getArticleCode() { return articleCode; } public GetProductByHashResponse setArticleCode(String value) { this.articleCode = value; return this; } public String getSerialNumber() { return serialNumber; } public GetProductByHashResponse setSerialNumber(String value) { this.serialNumber = value; return this; } } }