/* Options: Date: 2026-05-19 09:53:00 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: GetPromoterType.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/warranty/promotertype", Verbs="GET") open class GetPromoterType : IReturn { companion object { private val responseType = GetPromoterTypeResponse::class.java } override fun getResponseType(): Any? = GetPromoterType.responseType } open class GetPromoterTypeResponse : ArrayList() { } open class PromoterTypeItem { /** * Code of Promoter Type */ @ApiMember(Description="Code of Promoter Type", IsRequired=true) var code:String? = null /** * Description of Promoter Type */ @ApiMember(Description="Description of Promoter Type", IsRequired=true) var description:String? = null }