/* Options: Date: 2026-05-19 10:53:38 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: GetPersonalTitles.* //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("/personalTitles", "GET")] public partial class GetPersonalTitles : IReturn { /// ///Country Id /// [ApiMember(Description="Country Id", IsRequired=true)] public virtual string countryId { get; set; } } public partial class GetPersonalTitlesResponse : List { } public partial class PersonalTitle { public PersonalTitle() { gender = new List{}; } /// ///Title /// [ApiMember(Description="Title", IsRequired=true)] public virtual string title { get; set; } /// ///Gender description(s) /// [ApiMember(Description="Gender description(s)", IsRequired=true)] public virtual List gender { get; set; } /// ///Title translation /// [ApiMember(Description="Title translation", IsRequired=true)] public virtual string translation { get; set; } } }