/* Options: Date: 2025-12-06 06:44:28 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: NotificationAttachmentRequest.* //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/NotificationAttachment", Verbs="GET,POST,PUT,DELETE,OPTIONS") // @Route(Path="/v1/NotificationAttachment/{NotificationAttachmentId}", Verbs="GET,POST,PUT,DELETE,OPTIONS") open class NotificationAttachmentRequest : IReturn { open var NotificationAttachment:ArrayList = ArrayList() companion object { private val responseType = NotificationAttachmentResponse::class.java } override fun getResponseType(): Any? = NotificationAttachmentRequest.responseType } open class NotificationAttachmentResponse { open var ResponseStatus:ResponseStatus? = null open var NotificationAttachment:ArrayList = ArrayList() } open class NotificationAttachment { open var NotificationAttachmentId:Int? = null open var NotificationMessageId:Int? = null open var Attachment:ByteArray = ByteArray(0) open var FileName:String? = null open var MimeType:String? = null open var FileSizeInKB:Double? = null open var DateCreated:Date? = null }