/* Options: Date: 2026-03-31 20:18:01 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://test-dogw.klokgroep.nl/api //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetDocumentDetails.* //ExcludeTypes: //InitializeCollections: False //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="/documents/{DocumentID}", Verbs="GET POST") open class GetDocumentDetails : IReturn { open var DocumentID:UUID? = null open var IncludeCustomProperties:Boolean? = null companion object { private val responseType = Document::class.java } override fun getResponseType(): Any? = GetDocumentDetails.responseType } open class Document : ICustomProperties { open var ID:UUID? = null open var RootDocumentID:UUID? = null open var RegistrationprofileID:UUID? = null open var Title:String? = null open var FullTitle:String? = null open var Number:String? = null open var Version:String? = null open var ExternalNumber:String? = null open var ExternalVersion:String? = null open var InternalNumber:String? = null open var InternalInvoiceNumber:String? = null open var PersonID:Int? = null open var RelationID:Int? = null open var RelationTitle:String? = null open var ProjectID:Int? = null open var ProjectTitle:String? = null open var Extension:String? = null open var Date:Date? = null open var CommentsCount:Int? = null open var HasComments:Boolean? = null open var HasPreview:Boolean? = null open var ExtraField:String? = null open var IsFavorite:Boolean? = null open var DocumentcategoryText:String? = null open var FileSize:Long? = null open var FileDate:Date? = null open var Hash:String? = null open var HashType:String? = null open var FileUrl:String? = null open var StandardDocumentUrl:String? = null open var IsCorporateIdentity:Boolean? = null open var UserTitle:String? = null open var IsFrozen:Boolean? = null open var InternalCompanyID:Int? = null open var InternalLocationID:Int? = null open var LanguageID:Int? = null open var DirectUrl:String? = null open var AllowDigitalSigningOnlyOnPrimaryVersions:Boolean? = null open var IsPrimaryVersion:Boolean? = null open var FileExtension:String? = null override var CustomProperties:HashMap? = null } interface ICustomProperties { var CustomProperties:HashMap? }