' Options: 'Date: 2025-05-10 02:28:29 '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: ShippingAddressLookupRequest.* '''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 ''' '''ShippingAddressLookupRequires active-e Customer Service. ''' Public Partial Class ShippingAddressLookupRequest Inherits BaseSecureRequest Implements IReturn(Of ShippingAddressLookupResponse) ''' '''Pass in this parameter if you want to lookup all shipping addresses linked to a customer. Not required if using a customer login. Do not pass in this parameter if passing in the ShipId parameter. ''' Public Overridable Property Acct As Nullable(Of Integer) ''' '''Use this parameter to lookup a single Shipping Address with this ID. Do not pass in this parameter if passing in the Acct parameter. ''' Public Overridable Property ShipId As Nullable(Of Long) End Class Public Partial Class ShippingAddressLookupResponse Inherits BaseResponse Public Sub New() ShipTos = New List(Of ShipToInfo) End Sub Public Overridable Property ShipTos As List(Of ShipToInfo) End Class Public Partial Class ShipToInfo Public Overridable Property Id As Long Public Overridable Property Name As String Public Overridable Property Attention As String Public Overridable Property Address1 As String Public Overridable Property Address2 As String Public Overridable Property City As String Public Overridable Property State As String Public Overridable Property Zip As String Public Overridable Property Country As String Public Overridable Property Email As String Public Overridable Property Phone As String Public Overridable Property Phone2 As String Public Overridable Property Notes As String Public Overridable Property Primary As Boolean Public Overridable Property TaxLoc As String Public Overridable Property Active As Boolean End Class End Namespace End Namespace