/* Options: Date: 2026-05-19 09:51:40 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: CreateSalesRep.* //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.POS.ServiceModel; namespace Richemont.Booster2.PublicApi.POS.ServiceModel { [Route("/salesReps/{brand}/{posCode}", "POST")] public partial class CreateSalesRep : IReturn { /// ///Brand Triagram, e.g. CAR, IWC, VAC /// [ApiMember(Description="Brand Triagram, e.g. CAR, IWC, VAC", IsRequired=true)] public virtual string brand { get; set; } /// ///Point of Sale Code, e.g. ES100:102048 /// [ApiMember(Description="Point of Sale Code, e.g. ES100:102048", IsRequired=true)] public virtual string posCode { get; set; } /// ///First name of sales representative /// [ApiMember(Description="First name of sales representative", IsRequired=true)] public virtual string firstName { get; set; } /// ///Last name of sales representative /// [ApiMember(Description="Last name of sales representative", IsRequired=true)] public virtual string lastName { get; set; } /// ///Email address of sales representative /// [ApiMember(Description="Email address of sales representative", IsRequired=true)] public virtual string email { get; set; } } public partial class CreateSalesRepResponse { /// ///Booster user ID of sales representative /// [ApiMember(Description="Booster user ID of sales representative", IsRequired=true)] public virtual Guid userId { get; set; } } }