/* Options: Date: 2026-09-21 23:23:45 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: AttachmentViewRequest.* //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/AttachmentView/{AttachmentId}", Verbs="GET,OPTIONS") open class AttachmentViewRequest : IReturn { open var AttachmentId:UUID? = null companion object { private val responseType = AttachmentViewResponse::class.java } override fun getResponseType(): Any? = AttachmentViewRequest.responseType } open class AttachmentViewResponse { open var ResponseStatus:ResponseStatus? = null open var AttachmentId:UUID? = null open var FileName:String? = null open var MimeType:String? = null open var FileSizeInKB:Double? = null open var Extension:String? = null open var Category:String? = null open var Viewer:String? = null open var IsSensitive:Boolean? = null open var CanDownload:Boolean? = null open var ContentUrl:String? = null open var MediaUrl:String? = null open var PageCount:Int? = null open var CurrentVersionNo:Int? = null open var VersionCount:Int? = null open var TableName:String? = null open var RecordId:Int? = null open var CreatedBy:String? = null open var CreatedDate:Date? = null }