/* Options: Date: 2026-05-19 10:46:08 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: GetGenders.* //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 { public partial class Gender { /// ///Gender Id /// [ApiMember(Description="Gender Id", IsRequired=true)] public virtual string gender { get; set; } /// ///Gender description /// [ApiMember(Description="Gender description", IsRequired=true)] public virtual string genderDs { get; set; } } [Route("/genders/{brand}/{posCode}", "GET")] public partial class GetGenders : 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 GetGendersResponse : List { } }