Imports System.Runtime.Serialization Namespace Methods.GlobalIndexer.ImportFile Public Class 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 business entity of the file, ex DEFAULT ''' Public Property BusinessEntity As String ''' ''' 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 List(Of UserAttributeValue) ''' ''' The name of the user importing the file, ex. JenneJ ''' Public Property Who As String ''' ''' The language of the user, ex. de-DE ''' Public Property Language As String End Class End Namespace