/* Options: Date: 2025-12-06 05:24:29 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: UserNotificationsRequest.* //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/UserNotifications/{AgentId}", Verbs="GET,OPTIONS") // @Route(Path="/v1/UserNotifications/{NotificationId}", Verbs="DELETE,OPTIONS") open class UserNotificationsRequest : IReturn { open var AgentId:Int? = null open var NotificationId:Int? = null open var ShowDeleted:Boolean? = null companion object { private val responseType = UserNotificationsResponse::class.java } override fun getResponseType(): Any? = UserNotificationsRequest.responseType } open class UserNotificationsResponse { open var ResponseStatus:ResponseStatus? = null open var Notifications:ArrayList = ArrayList() open var Deleted:Boolean? = null } open class UserNotification { open var NotificationId:Int? = null open var AgentId:Int? = null open var Description:String? = null open var From:String? = null open var CreatedDate:Date? = null open var Type:String? = null open var URL:String? = null open var RefId:String? = null open var IsDeleted:Boolean? = null }