' Options: 'Date: 2025-05-10 03:27:56 '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: EditInventoryRequest.* '''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 ''' '''EditInventoryRequires active-e Inventory Service ''' Public Partial Class EditInventoryRequest Inherits BaseSecureRequest Implements IReturn(Of EditInventoryResponse) Public Sub New() Barcodes = New List(Of String) End Sub Public Overridable Property SaqPk As Nullable(Of Long) Public Overridable Property SasPk As Nullable(Of Long) Public Overridable Property Description As String Public Overridable Property OurPrice As Nullable(Of Decimal) Public Overridable Property RetailPrice As Nullable(Of Decimal) Public Overridable Property PriceA As Nullable(Of Decimal) Public Overridable Property PriceB As Nullable(Of Decimal) Public Overridable Property PriceC As Nullable(Of Decimal) Public Overridable Property MinPrice As Nullable(Of Decimal) Public Overridable Property ActiveEPrice As Nullable(Of Decimal) Public Overridable Property Locator As String Public Overridable Property UpdateAllLocations As Boolean ''' '''List of Barcodes. If barcodes are sent, they will overwrite existing barcodes. ''' Public Overridable Property Barcodes As List(Of String) Public Overridable Property NewComputerQuantity As Nullable(Of Decimal) End Class Public Partial Class EditInventoryResponse Inherits BaseResponse End Class End Namespace End Namespace