/* Options: Date: 2025-12-06 09:21:27 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: NotificationHeaderRequest.* //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/NotificationHeader", Verbs="GET,POST,PUT,DELETE,OPTIONS") // @Route(Path="/v1/NotificationHeader/{NotificationHeaderId}", Verbs="GET,POST,PUT,DELETE,OPTIONS") open class NotificationHeaderRequest : IReturn { open var NotificationHeader:ArrayList = ArrayList() companion object { private val responseType = NotificationHeaderResponse::class.java } override fun getResponseType(): Any? = NotificationHeaderRequest.responseType } open class NotificationHeaderResponse { open var ResponseStatus:ResponseStatus? = null open var NotificationHeader:ArrayList = ArrayList() } open class NotificationHeader { open var NotificationHeaderId:Int? = null open var Subject:String? = null open var Status:String? = null open var NeedsCloseApproval:Boolean? = null open var IsDeleted:Boolean? = null open var CreatedBy:Int? = null open var DateCreated:Date? = null }