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