' Options: 'Date: 2025-05-10 03:58:12 '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: InventoryQtyRequest.* '''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 LocationInfo Public Overridable Property Id As Long Public Overridable Property Desc As String Public Overridable Property ShortDesc As String Public Overridable Property Region As String Public Overridable Property Latitude As Decimal Public Overridable Property Longitude As Decimal Public Overridable Property InStorePickup As String Public Overridable Property Active As Boolean Public Overridable Property CashSaleAcct As Nullable(Of Integer) 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 ''' '''InventoryQtyRequires active-e Inventory Service or active-e Vortx E-Commerce or active-e 3rd Party E-Commerce ''' Public Partial Class InventoryQtyRequest Inherits BaseRequest Implements IReturn(Of InventoryQtyResponse) Public Overridable Property Pk As Nullable(Of Long) Public Overridable Property Model As String Public Overridable Property AeId As String Public Overridable Property SkuPk As Nullable(Of Long) Public Overridable Property Sku As String Public Overridable Property SendVendorQtyAsSeperateLocation As Boolean End Class Public Partial Class InventoryQtyResponse Inherits BaseResponse Public Sub New() Variants = New List(Of InventoryQtyByVariant) End Sub Public Overridable Property Variants As List(Of InventoryQtyByVariant) Public Partial Class InventoryQtyByVariant Public Sub New() Locations = New List(Of InventoryQtyByLocation) End Sub Public Overridable Property Sku As String Public Overridable Property AeVariantName As String Public Overridable Property Locations As List(Of InventoryQtyByLocation) End Class Public Partial Class InventoryQtyByLocation Public Overridable Property LocationInfo As LocationInfo Public Overridable Property QtyAvail As Decimal End Class End Class End Namespace End Namespace