/* Options: Date: 2025-12-06 08:31:07 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.dev.dynamics.trendsic.com //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: AgentPromotionsHistoryRequest.* //ExcludeTypes: //InitializeCollections: True //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="/v1/AgentPromotionsHistory/{AgentId}", Verbs="GET,OPTIONS") open class AgentPromotionsHistoryRequest : IReturn { open var AgentId:Int? = null companion object { private val responseType = AgentPromotionsHistoryResponse::class.java } override fun getResponseType(): Any? = AgentPromotionsHistoryRequest.responseType } open class AgentPromotionsHistoryResponse { open var ResponseStatus:ResponseStatus? = null open var result:ArrayList = ArrayList() } open class AgentPromotionsHistory { open var AgentLevel:Int? = null open var PromotionDate:Date? = null open var Description:String? = null open var NextPromotionDescription:String? = null open var NextPromotionGuideline:String? = null }