/* Options: Date: 2026-05-19 09:52:04 Version: 8.22 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://dev-api-booster.richemont.com //GlobalNamespace: //MakePartial: True //MakeVirtual: True //MakeInternal: False //MakeDataContractsExtensible: False //AddNullableAnnotations: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //InitializeCollections: True //ExportValueTypes: False IncludeTypes: GetProductByHash.* //ExcludeTypes: //AddNamespaces: //AddDefaultXmlNamespace: http://schemas.servicestack.net/types */ using System; using System.Collections; using System.Collections.Generic; using System.Runtime.Serialization; using ServiceStack; using ServiceStack.DataAnnotations; using Richemont.Booster2.PublicApi.MasterFile.ServiceModel; namespace Richemont.Booster2.PublicApi.MasterFile.ServiceModel { [Route("/hashlookup/{hash}", "GET")] public partial class GetProductByHash : IReturn { /// ///Hash String /// [ApiMember(Description="Hash String", IsRequired=true)] public virtual string hash { get; set; } } public partial class GetProductByHashResponse { /// ///Article Code, which is more of Reference Id /// [ApiMember(Description="Article Code, which is more of Reference Id ", IsRequired=true)] public virtual string articleCode { get; set; } /// ///Serial Number /// [ApiMember(Description="Serial Number", IsRequired=true)] public virtual string serialNumber { get; set; } } }