/* Options: Date: 2026-05-19 09:52:52 Version: 8.22 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://dev-api-booster.richemont.com //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetPrice.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/price/{brand}", Verbs="GET") open class GetPrice : IReturn { /** * Brand */ @ApiMember(Description="Brand", IsRequired=true) var brand:String? = null /** * POS Legacy */ @ApiMember(Description="POS Legacy", IsRequired=true) var posCode:String? = null /** * List of Article Codes */ @ApiMember(Description="List of Article Codes", IsRequired=true) var articleCodes:ArrayList = ArrayList() /** * Include Dealer Cost Price in the response */ @ApiMember(Description="Include Dealer Cost Price in the response", IsRequired=true) var includeDealerCostPrice:Boolean? = null companion object { private val responseType = GetPriceResponse::class.java } override fun getResponseType(): Any? = GetPrice.responseType } open class GetPriceResponse : ArrayList() { } open class Price { /** * Reference Code of the item */ @ApiMember(Description="Reference Code of the item", IsRequired=true) var articleCode:String? = null /** * Currency of the price */ @ApiMember(Description="Currency of the price", IsRequired=true) var currency:String? = null /** * Retail price of the item */ @ApiMember(Description="Retail price of the item") var retailSalePrice:BigDecimal? = null /** * Code of currency applied */ @ApiMember(Description="Code of currency applied", IsRequired=true) var priceListCode:String? = null /** * Dealer Cost Price */ @ApiMember(Description="Dealer Cost Price") var dealerCostPrice:DealerCostPrice? = null } open class DealerCostPrice { /** * Currency of the Dealer Cost Price */ @ApiMember(Description="Currency of the Dealer Cost Price", IsRequired=true) var currency:String? = null /** * Dealer Cost Price of the item */ @ApiMember(Description="Dealer Cost Price of the item", IsRequired=true) var price:BigDecimal? = null }