' Options: 'Date: 2025-05-10 03:34:03 '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: InventoryAutoPriceRequest.* '''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 AutoPriceRecord Public Overridable Property Id As Long Public Overridable Property Description As String Public Overridable Property Category As Nullable(Of Integer) Public Overridable Property CategoryDescription As String Public Overridable Property SubCategory As Nullable(Of Integer) Public Overridable Property SubCategoryDescription As String Public Overridable Property Vendor As Nullable(Of Integer) Public Overridable Property VendorName As String End Class 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 ''' '''InventoryAutoPriceRequires active-e Inventory Service ''' Public Partial Class InventoryAutoPriceRequest Inherits BaseSecureRequest Implements IReturn(Of InventoryAutoPriceResponse) Public Overridable Property Category As Nullable(Of Integer) Public Overridable Property SubCategory As Nullable(Of Integer) Public Overridable Property Vendor As Nullable(Of Integer) Public Overridable Property AutoPriceId As Nullable(Of Long) Public Overridable Property MinimumPrice As Decimal Public Overridable Property PriceA As Decimal Public Overridable Property PriceB As Decimal Public Overridable Property PriceC As Decimal Public Overridable Property OurPrice As Decimal Public Overridable Property RetailPrice As Decimal Public Overridable Property Cost As Decimal Public Overridable Property WeightedCost As Decimal Public Overridable Property VendorNormalCost As Decimal End Class Public Partial Class InventoryAutoPriceResponse Inherits BaseResponse Public Sub New() AutoPriceRecords = New List(Of AutoPriceRecord) End Sub Public Overridable Property AutoPriceRecords As List(Of AutoPriceRecord) Public Overridable Property MinimumPrice 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 OurPrice As Nullable(Of Decimal) End Class End Namespace End Namespace