/* Options: Date: 2024-10-18 04:30:22 Version: 6.40 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://digiofficeapigateway.deltares.nl/api //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetDocumentDetails.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/documents/{DocumentID}", Verbs="GET POST") open class GetDocumentDetails : IReturn { var DocumentID:UUID? = null var IncludeCustomProperties:Boolean? = null companion object { private val responseType = Document::class.java } override fun getResponseType(): Any? = GetDocumentDetails.responseType } open class Document : ICustomProperties { var ID:UUID? = null var RootDocumentID:UUID? = null var RegistrationprofileID:UUID? = null var Title:String? = null var FullTitle:String? = null var Number:String? = null var Version:String? = null var ExternalNumber:String? = null var ExternalVersion:String? = null var InternalNumber:String? = null var InternalInvoiceNumber:String? = null var PersonID:Int? = null var RelationID:Int? = null var RelationTitle:String? = null var ProjectID:Int? = null var ProjectTitle:String? = null var Extension:String? = null var Date:Date? = null var CommentsCount:Int? = null var HasComments:Boolean? = null var HasPreview:Boolean? = null var ExtraField:String? = null var IsFavorite:Boolean? = null var DocumentcategoryText:String? = null var FileSize:Long? = null var FileDate:Date? = null var Hash:String? = null var HashType:String? = null var FileUrl:String? = null var StandardDocumentUrl:String? = null var IsCorporateIdentity:Boolean? = null var UserTitle:String? = null var IsFrozen:Boolean? = null var InternalCompanyID:Int? = null var DirectUrl:String? = null var AllowDigitalSigningOnlyOnPrimaryVersions:Boolean? = null var IsPrimaryVersion:Boolean? = null var FileExtension:String? = null var CustomProperties:HashMap = HashMap() } open interface ICustomProperties { var CustomProperties:HashMap? }