' Options:
'Date: 2026-05-19 10:58:45
'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
'''MakeDataContractsExtensible: False
'''AddReturnMarker: True
'''AddDescriptionAsComments: True
'''AddDataContractAttributes: False
'''AddIndexesToDataMembers: False
'''AddGeneratedCodeAttributes: False
'''AddResponseStatus: False
'''AddImplicitVersion:
'''InitializeCollections: True
'''ExportValueTypes: False
'IncludeTypes: GetPrice.*
'''ExcludeTypes:
'''AddNamespaces:
'''AddDefaultXmlNamespace: http://schemas.servicestack.net/types
Imports System
Imports System.Collections
Imports System.Collections.Generic
Imports System.Runtime.Serialization
Imports ServiceStack
Imports ServiceStack.DataAnnotations
Imports Richemont.Booster2.PublicApi.MasterFile.ServiceModel
Namespace Global
Namespace Richemont.Booster2.PublicApi.MasterFile.ServiceModel
Public Partial Class DealerCostPrice
'''
'''Currency of the Dealer Cost Price
'''
Public Overridable Property currency As String
'''
'''Dealer Cost Price of the item
'''
Public Overridable Property price As Nullable(Of Decimal)
End Class
Public Partial Class GetPrice
Implements IReturn(Of GetPriceResponse)
Public Sub New()
articleCodes = New List(Of String)
End Sub
'''
'''Brand
'''
Public Overridable Property brand As String
'''
'''POS Legacy
'''
Public Overridable Property posCode As String
'''
'''List of Article Codes
'''
Public Overridable Property articleCodes As List(Of String)
'''
'''Include Dealer Cost Price in the response
'''
Public Overridable Property includeDealerCostPrice As Boolean
End Class
Public Partial Class GetPriceResponse
Inherits List(Of Price)
End Class
Public Partial Class Price
'''
'''Reference Code of the item
'''
Public Overridable Property articleCode As String
'''
'''Currency of the price
'''
Public Overridable Property currency As String
'''
'''Retail price of the item
'''
Public Overridable Property retailSalePrice As Decimal
'''
'''Code of currency applied
'''
Public Overridable Property priceListCode As String
'''
'''Dealer Cost Price
'''
Public Overridable Property dealerCostPrice As DealerCostPrice
End Class
End Namespace
End Namespace