Imports System.Runtime.Serialization Imports DigitalData.Modules.ZooFlow.State Imports DigitalData.Services.EDMIService.Methods.IDB Namespace Methods.GlobalIndexer.ImportFile Public Class Globix_ImportFileRequest ''' ''' Important File properties like, Name, Contents, CreatedAt, ModifiedAt, Checksum ''' Public Property File As FileProperties ''' ''' The ProfileId the file will be imported with ''' Public Property ProfileId As Integer ''' ''' The Document Type, ex. 1 ''' Public Property IDBDoctypeId As Long ''' ''' The kind of object to be created, ex. DOC ''' Public Property KindType As String ''' ''' Name/title of the ObjectStore to save the file to, ex. Work ''' Public Property StoreName As String ''' ''' The attribute values given by the user in the form of ''' Attribute Name/Attribute Value/ControlName ''' Public Property AttributeValues As New List(Of UserAttributeValue) ''' ''' User Importing the file ''' ''' Public Property User As UserState End Class End Namespace