/* Options: Date: 2026-05-19 10:55:25 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: GetInterests.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/interests/{brand}/{posCode}", Verbs="GET") open class GetInterests : IReturn { /** * Brand */ @ApiMember(Description="Brand", IsRequired=true) var brand:String? = null /** * POS Legacy */ @ApiMember(Description="POS Legacy", IsRequired=true) var posCode:String? = null companion object { private val responseType = GetInterestsResponse::class.java } override fun getResponseType(): Any? = GetInterests.responseType } open class GetInterestsResponse : ArrayList() { } open class Interest { /** * Interest description */ @ApiMember(Description="Interest description", IsRequired=true) var interest:String? = null /** * SAP Interest ID, e.g. 'CA-1' */ @ApiMember(Description="SAP Interest ID, e.g. 'CA-1'", IsRequired=true) var sapInterestId:String? = null /** * Interest description translation */ @ApiMember(Description="Interest description translation") var translation:String? = null }