/* Options: Date: 2025-12-06 08:30:24 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: ContactCommunicationsRequest.* //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/Contact/{ContactId}/Communications", Verbs="GET") open class ContactCommunicationsRequest : IReturn { open var ContactId:Int? = null companion object { private val responseType = ContactCommunicationsResponse::class.java } override fun getResponseType(): Any? = ContactCommunicationsRequest.responseType } open class ContactCommunicationsResponse { open var ResponseStatus:ResponseStatus? = null open var Communications:ArrayList = ArrayList() } open class ContactCommunication { open var ContactId:Int? = null open var ContactName:String? = null open var AgentId:Int? = null open var AgentName:String? = null open var DateCreated:Date? = null open var Message:String? = null open var MessageType:String? = null open var IsAgentMessage:Boolean? = null open var Sender:String? = null }