/* Options: Date: 2025-12-06 07:52:20 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: IncomingNotifications.* //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/IncomingNotifications", Verbs="GET,POST,PUT,DELETE,OPTIONS") // @Route(Path="/v1/IncomingNotifications/{Id}", Verbs="GET,POST,PUT,DELETE,OPTIONS") open class IncomingNotifications : IncomingNotificationObject(), IReturn { open var ApiKey:UUID? = null companion object { private val responseType = IncomingNotificationsResponse::class.java } override fun getResponseType(): Any? = IncomingNotifications.responseType } open class IncomingNotificationsResponse { open var ResponseStatus:ResponseStatus? = null open var IncomingNotifications:ArrayList = ArrayList() } open class IncomingNotificationObject { open var Id:UUID? = null open var CustomerId:UUID? = null open var Message:String? = null open var NotificationMethod:UUID? = null open var DateReceived:Date? = null }