/* Options: Date: 2026-05-19 10:47:24 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: GetCatalog.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/purchase/catalog", Verbs="GET") open class GetCatalog : IReturn { /** * POS Legacy */ @ApiMember(Description="POS Legacy", IsRequired=true) var posCode:String? = null /** * Brand Trigram of the POS */ @ApiMember(Description="Brand Trigram of the POS", IsRequired=true) var brand:String? = null companion object { private val responseType = GetCatalogResponse::class.java } override fun getResponseType(): Any? = GetCatalog.responseType } open class GetCatalogResponse { var articles:ArrayList
= ArrayList
() } open class Article { /** * Reference ID / Code of the Article */ @ApiMember(Description="Reference ID / Code of the Article", IsRequired=true) var articleCode:String? = null /** * Price of the article */ @ApiMember(Description="Price of the article", IsRequired=true) var price:BigDecimal? = null /** * Currency of the price of the article */ @ApiMember(Description="Currency of the price of the article", IsRequired=true) var currency:String? = null }