' Options: 'Date: 2026-08-27 08:00:33 'Version: 10.08 'Tip: To override a DTO option, remove "''" prefix before updating 'BaseUrl: https://dev-api-booster.richemont.com ' '''GlobalNamespace: '''MakePartial: True '''MakeVirtual: True '''MakeDataContractsExtensible: False '''AddReturnMarker: True '''AddDescriptionAsComments: True '''AddDataContractAttributes: False '''AddIndexesToDataMembers: False '''AddGeneratedCodeAttributes: False '''AddResponseStatus: False '''AddImplicitVersion: '''InitializeCollections: False '''ExportValueTypes: False 'IncludeTypes: GetSalesReps.* '''ExcludeTypes: '''AddNamespaces: '''AddDefaultXmlNamespace: http://schemas.servicestack.net/types Imports System Imports System.IO Imports System.Collections Imports System.Collections.Generic Imports System.Runtime.Serialization Imports ServiceStack Imports ServiceStack.DataAnnotations Imports Richemont.Booster2.PublicApi.POS.ServiceModel Namespace Global Namespace Richemont.Booster2.PublicApi.POS.ServiceModel Public Partial Class GetSalesReps Implements IReturn(Of GetSalesRepsResponse) ''' '''Brand Triagram, e.g. CAR, IWC, VAC ''' Public Overridable Property brand As String ''' '''Point of Sale Code, e.g. ES100:102048 ''' Public Overridable Property posCode As String ''' '''Booster Customer Id ''' Public Overridable Property boosterCustomerId As Integer? ''' '''Whether the sales representative's account is locked. ''' Public Overridable Property accountLocked As Boolean? ''' '''Whether the sales representative's account is pinned. ''' Public Overridable Property isPinned As Boolean? End Class Public Partial Class GetSalesRepsResponse Inherits List(Of SalesRep) End Class Public Partial Class SalesRep ''' '''The first name of the sales representative. ''' Public Overridable Property firstName As String ''' '''The last name of the sales representative. ''' Public Overridable Property lastName As String ''' '''The email address of the sales representative. ''' Public Overridable Property email As String ''' '''The unique user ID of the sales representative. ''' Public Overridable Property userId As Guid ''' '''Whether the sales representative's account is locked. ''' Public Overridable Property accountLocked As Boolean ''' '''Whether the sales representative's account is pinned. ''' Public Overridable Property isPinned As Boolean End Class End Namespace End Namespace