/* Options: Date: 2025-12-06 07:25:47 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: AgentPromotionRequest.* //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/AgentPromotion/{StartDate}", Verbs="GET,OPTIONS") // @Route(Path="/v1/AgentPromotion/{StartDate}/{EndDate}", Verbs="GET,OPTIONS") open class AgentPromotionRequest : IReturn { open var StartDate:Date? = null open var EndDate:Date? = null companion object { private val responseType = AgentPromotionResponse::class.java } override fun getResponseType(): Any? = AgentPromotionRequest.responseType } open class AgentPromotionResponse { open var ResponseStatus:ResponseStatus? = null open var AgentPromotion:ArrayList = ArrayList() } open class AgentPromotion { open var AgentPromotionId:Int? = null open var AgentId:Int? = null open var FirstName:String? = null open var LastName:String? = null open var FullName:String? = null open var PreviousLevel:BigDecimal? = null open var PreviousRank:String? = null open var NewLevel:BigDecimal? = null open var NewRank:String? = null open var CashFlow:BigDecimal? = null open var AppCount:Int? = null open var DateCreated:Date? = null }