/* Options: Date: 2026-06-14 21:42:33 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://qp-microservices-booster.richemont.com //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetPromoterTypes.* //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/v1/promotertypes/{promoterTypeId*}", Verbs="GET") open class GetPromoterTypes : BaseRequest(), IReturn { var promoterTypeId:String? = null companion object { private val responseType = GetPromoterTypesResponse::class.java } override fun getResponseType(): Any? = GetPromoterTypes.responseType } open class GetPromoterTypesResponse { var promoterTypes:ArrayList = ArrayList() } open class BaseRequest : IRequest { var sid:String? = null var app:String? = null var _os:String? = null var _appVersion:String? = null var _searchMethod:String? = null } open interface IRequest { var sid:String? var app:String? } open class PromoterType { var promoterTypeId:String? = null var description:String? = null }