' Options: 'Date: 2025-05-10 02:34:27 'Version: 8.40 '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: InventoryLookupRequest.* '''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 Namespace Global 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 Public Partial Class InventoryLookupObj Public Overridable Property ResultType As String Public Overridable Property Sku As String Public Overridable Property Serial As String Public Overridable Property Category As Integer Public Overridable Property SubCategory As Integer Public Overridable Property Description As String Public Overridable Property ComputerQty As Decimal Public Overridable Property AvailableQty As Decimal Public Overridable Property SadPk As Long Public Overridable Property SkuPk As Long Public Overridable Property SasPk As Nullable(Of Long) Public Overridable Property InventoryType As String Public Overridable Property NicsPrice As Nullable(Of Decimal) Public Overridable Property ADBookItem As Boolean Public Overridable Property LocationCode As String End Class ''' '''InventoryLookupRequires active-e Inventory Service ''' Public Partial Class InventoryLookupRequest Inherits BaseSecureRequest Implements IReturn(Of InventoryLookupResponse) Public Overridable Property Item As String Public Overridable Property LocationCode As String End Class Public Partial Class InventoryLookupResponse Inherits BaseResponse Public Sub New() Results = New List(Of InventoryLookupObj) End Sub Public Overridable Property Results As List(Of InventoryLookupObj) End Class End Namespace End Namespace