/* Options: Date: 2025-12-06 10:39:55 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: NotificationsRequest.* //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/Notifications", Verbs="GET,OPTIONS") open class NotificationsRequest : IReturn { companion object { private val responseType = NotificationsResponse::class.java } override fun getResponseType(): Any? = NotificationsRequest.responseType } open class NotificationsResponse { open var ResponseStatus:ResponseStatus? = null open var Notifications: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 } open class Notification : NotificationHeader() { }