Public Class Options
Public MustInherit Class BaseOptions
'''
''' Windows username of the user responsible for the request. Defaults to the currently logged in user.
'''
Public Property Username As String = Environment.UserName
'''
''' Language code of the client responsible for the request. Defaults to the language of the current client.
'''
'''
Public Property Language As String = Threading.Thread.CurrentThread.CurrentUICulture.Name
End Class
'''
''' Import options for NewFileAsync.
'''
Public Class NewFileOptions
Inherits BaseOptions
'''
''' Date when the file was imported. Can be in the past. Defaults to now.
'''
Public Property DateImported As Date = Date.Now
End Class
Public Class ImportFileOptions
Inherits BaseOptions
'''
''' Date when the file was imported. Can be in the past. Defaults to now.
'''
Public Property DateImported As Date = Date.Now
End Class
Public Class GetVariableValueOptions
Inherits BaseOptions
End Class
Public Class SetVariableValueOptions
Inherits BaseOptions
End Class
Public Class NewObjectOptions
Inherits BaseOptions
End Class
End Class