' Options: 'Date: 2025-07-04 09:23:47 'Version: 6.110 'Tip: To override a DTO option, remove "''" prefix before updating 'BaseUrl: https://doapigw.baasbv.nl/api ' '''GlobalNamespace: '''MakePartial: True '''MakeVirtual: True '''MakeDataContractsExtensible: False '''AddReturnMarker: True '''AddDescriptionAsComments: True '''AddDataContractAttributes: False '''AddIndexesToDataMembers: False '''AddGeneratedCodeAttributes: False '''AddResponseStatus: False '''AddImplicitVersion: '''InitializeCollections: True '''ExportValueTypes: False 'IncludeTypes: AddDocumentsForBackgroundRegistration.* '''ExcludeTypes: '''AddNamespaces: '''AddDefaultXmlNamespace: http://schemas.servicestack.net/types Imports System Imports System.Collections Imports System.Collections.Generic Imports System.Runtime.Serialization Imports ServiceStack Imports ServiceStack.DataAnnotations Imports System.Drawing Imports IDB.API.DTO.Document.Operations Namespace Global Namespace IDB.API.DTO.Document.Operations ''' '''Register documents queueud for registration in background ''' Public Partial Class AddDocumentsForBackgroundRegistration Implements IReturn(Of AddDocumentsForBackgroundRegistrationResponse) Public Sub New() Documents = New List(Of RegisterDocument) End Sub ''' '''List of queued documents to register in background ''' Public Overridable Property Documents As List(Of RegisterDocument) End Class Public Partial Class AddDocumentsForBackgroundRegistrationResponse Public Sub New() RegisteredDocumentUploads = New List(Of RegisteredDocumentUpload) End Sub Public Overridable Property RegisteredDocumentUploads As List(Of RegisteredDocumentUpload) End Class Public Partial Class RegisterDocument Implements IReturn(Of RegisterDocumentResponse) Public Sub New() Values = New List(Of RegistrationValue) Processes = New List(Of Process) End Sub Public Overridable Property RegistrationProfileID As Guid Public Overridable Property Values As List(Of RegistrationValue) Public Overridable Property Processes As List(Of Process) Public Overridable Property DocumentUploadId As String Public Overridable Property DocumentId As Nullable(Of Guid) Public Overridable Property StandardDocumentID As Nullable(Of Guid) Public Overridable Property HasUnsavedChangesInDocument As Nullable(Of Boolean) Public Overridable Property IsOpenedFromNonDMSLocation As Nullable(Of Boolean) End Class Public Partial Class RegisteredDocumentUpload Public Overridable Property DocumentUploadID As Integer Public Overridable Property IsSuccess As Boolean Public Overridable Property Message As String End Class End Namespace End Namespace