' Options: 'Date: 2025-05-10 01:51:19 '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: UpdateCustomerRequest.* '''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 FormInput ''' '''Field Name of the Input Field ''' Public Overridable Property Key As String ''' '''Value of the Input Field. ''' Public Overridable Property Value As String ''' '''Whether or not the field is encryped with the C2B encryption key. ''' Public Overridable Property Encrypted As Boolean End Class ''' '''UpdateCustomerRequires active-e Customer Service. ''' Public Partial Class UpdateCustomerRequest Inherits BaseSecureRequest Implements IReturn(Of UpdateCustomerResponse) Public Sub New() FormInputList = New List(Of FormInput) End Sub ''' '''Customer Acct # ''' Public Overridable Property Acct As Integer ''' '''Location ID ''' Public Overridable Property LocationId As Nullable(Of Long) ''' '''Customer Default Id ''' Public Overridable Property CustomerDefaultId As Nullable(Of Long) ''' '''Tax Authority Id ''' Public Overridable Property TaxAuthorityId As Nullable(Of Long) Public Overridable Property Name As String Public Overridable Property Attn 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 HomePhone As String Public Overridable Property WorkPhone As String Public Overridable Property CellPhone As String Public Overridable Property Employer As String Public Overridable Property SS As String Public Overridable Property Email As String ''' '''Email Method. Set this to Word, PDF, HTML, or None ''' Public Overridable Property EmailMethod As String Public Overridable Property Notes As String Public Overridable Property DriversLicenseInfo As LicenseInfo ''' '''If TRUE, all applicable settings from the customer default will be copied over to the customer. Generally only used when changing the customer default. ''' Public Overridable Property RefreshCustomerDefaults As Boolean ''' ''' ''' Public Overridable Property FormInputList As List(Of FormInput) End Class Public Partial Class UpdateCustomerResponse Inherits BaseResponse End Class End Namespace End Namespace