/* Options: Date: 2026-05-19 09:52:05 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: GetHobbies.* //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.CRM.ServiceModel; namespace Richemont.Booster2.PublicApi.CRM.ServiceModel { [Route("/hobbies/{brand}/{posCode}", "GET")] public partial class GetHobbies : IReturn { /// ///Brand /// [ApiMember(Description="Brand", IsRequired=true)] public virtual string brand { get; set; } /// ///POS Legacy /// [ApiMember(Description="POS Legacy", IsRequired=true)] public virtual string posCode { get; set; } } public partial class GetHobbiesResponse : List { } public partial class Hobby { /// ///Hobby description /// [ApiMember(Description="Hobby description", IsRequired=true)] public virtual string hobby { get; set; } /// ///SAP Hobby ID, e.g. 'ART' /// [ApiMember(Description="SAP Hobby ID, e.g. 'ART'", IsRequired=true)] public virtual string sapHobbyId { get; set; } /// ///Hobby description translation /// [ApiMember(Description="Hobby description translation")] public virtual string translation { get; set; } } }