' Options: 'Date: 2024-09-21 00:50:50 'Version: 8.30 'Tip: To override a DTO option, remove "''" prefix before updating 'BaseUrl: https://active-ewebservice.biz/aeservices30/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: ScanForImportRequest.* '''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 AIM.WebService Imports AIM Namespace Global Namespace AIM Public Partial Class ExceptionInfo Public Overridable Property Barcode As String Public Overridable Property Description As String Public Overridable Property Base64Image As String Public Overridable Property Category As Integer Public Overridable Property SubCategory As Nullable(Of Integer) End Class Public Interface IScanItem Property SkuPk As Nullable(Of Long) Property SasPk As Nullable(Of Long) Property Sku As String Property Serial As String Property Quantity As Decimal Property ExceptionInfo As ExceptionInfo End Interface Public Partial Class ScanErrorItem Implements IScanItem Public Overridable Property SkuPk As Nullable(Of Long) Public Overridable Property SasPk As Nullable(Of Long) Public Overridable Property Sku As String Public Overridable Property Serial As String Public Overridable Property Quantity As Decimal Public Overridable Property ExceptionInfo As ExceptionInfo Public Overridable Property ErrorMessage As String End Class Public Partial Class ScanItem Implements IScanItem Public Overridable Property SkuPk As Nullable(Of Long) Public Overridable Property SasPk As Nullable(Of Long) Public Overridable Property Sku As String Public Overridable Property Serial As String Public Overridable Property Quantity As Decimal Public Overridable Property ExceptionInfo As ExceptionInfo End Class End Namespace Namespace AIM.WebService Public Partial Class BaseRequest ''' '''This is your AIM API Key provided by Tri-Tech ''' Public Overridable Property ApiKey As String Public Overridable Property OAuthToken As String End Class Public Partial Class BaseResponse ''' ''' ''' Public Overridable Property Status As BaseResponseResult End Class Public Partial Class BaseSecureRequest Inherits BaseRequest ''' ''' ''' Public Overridable Property Token As String ''' ''' ''' Public Overridable Property DeviceId As String ''' ''' ''' Public Overridable Property AppId As String End Class ''' '''ScanForImportRequires active-e Inventory Service ''' Public Partial Class ScanForImportRequest Inherits BaseSecureRequest Implements IReturn(Of ScanForImportResponse) Public Sub New() Items = New List(Of ScanItem) End Sub Public Overridable Property Description As String Public Overridable Property Items As List(Of ScanItem) Public Overridable Property ReceiveInventoryMode As Nullable(Of Boolean) Public Overridable Property AppendMode As Nullable(Of Boolean) End Class Public Partial Class ScanForImportResponse Inherits BaseResponse Public Sub New() ErrorItems = New List(Of ScanErrorItem) End Sub Public Overridable Property ErrorItems As List(Of ScanErrorItem) End Class End Namespace End Namespace