/* Options: Date: 2025-12-06 05:52:40 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: NotificationMessageRequest.* //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/NotificationMessage", Verbs="GET,POST,PUT,DELETE,OPTIONS") // @Route(Path="/v1/NotificationMessage/{NotificationMessageId}", Verbs="GET,POST,PUT,DELETE,OPTIONS") open class NotificationMessageRequest : IReturn { open var NotificationMessage:ArrayList = ArrayList() companion object { private val responseType = NotificationMessageResponse::class.java } override fun getResponseType(): Any? = NotificationMessageRequest.responseType } open class NotificationMessageResponse { open var ResponseStatus:ResponseStatus? = null open var NotificationMessage:ArrayList = ArrayList() } open class NotificationMessage { open var NotificationMessageId:Int? = null open var NotificationHeaderId:Int? = null open var SenderId:Int? = null open var Subject:String? = null open var Message:String? = null open var DateCreated:Date? = null open var SenderName:String? = null }