/* Options: Date: 2025-12-06 09:44:01 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: ContactHistoryRequest.* //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/ContactHistory", Verbs="GET,POST,PUT,DELETE,OPTIONS") // @Route(Path="/v1/ContactHistory/{ContactHistoryId}", Verbs="GET,POST,PUT,DELETE,OPTIONS") open class ContactHistoryRequest : IReturn { open var ContactHistory:ArrayList = ArrayList() companion object { private val responseType = ContactHistoryResponse::class.java } override fun getResponseType(): Any? = ContactHistoryRequest.responseType } open class ContactHistoryResponse { open var ResponseStatus:ResponseStatus? = null open var ContactHistory:ArrayList = ArrayList() } open class ContactHistory { open var ContactHistoryId:Int? = null open var ContactId:Int? = null open var EventId:Int? = null open var AgentId:Int? = null open var EventDate:Date? = null open var DateCreated:Date? = null open var Note:String? = null } open class ActivityTracker_Application { open var ContactName:String? = null open var Carriers:String? = null open var ApplicationId:Int? = null open var ContactId:Int? = null open var LifeAP:BigDecimal? = null open var AnnuityFlow:BigDecimal? = null open var AnnuityTransfer:BigDecimal? = null open var DateCreated:Date? = null } open class ContactHistoryExtended : ContactHistory() { open var EventTypeName:String? = null open var Application:ArrayList = ArrayList() }