' Options: 'Date: 2025-05-10 03:11:58 '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: SearchContactManagementRequest.* '''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 AttributeValuePair Public Overridable Property Name As String Public Overridable Property Value As String End Class Public Partial Class ContactManagementRecord Public Sub New() Attributes = New List(Of AttributeValuePair) End Sub Public Overridable Property Ref As String Public Overridable Property DateTime As Date Public Overridable Property Contact As String Public Overridable Property CusAcct As Integer Public Overridable Property ActionId As Long Public Overridable Property Status As String Public Overridable Property ActionDate As Nullable(Of Date) Public Overridable Property PopUp As Boolean Public Overridable Property TopicId As Nullable(Of Long) Public Overridable Property Topic As String Public Overridable Property Closed As Boolean Public Overridable Property ClosedDate As Nullable(Of Date) Public Overridable Property ColorValue As Integer Public Overridable Property LanId As String Public Overridable Property FormattedNotes As Boolean Public Overridable Property Note1 As String Public Overridable Property Note2 As String Public Overridable Property Note3 As String Public Overridable Property Attributes As List(Of AttributeValuePair) 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 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 ''' '''SearchContactManagement web service. ''' Public Partial Class SearchContactManagementRequest Inherits BaseSecureRequest Implements IReturn(Of SearchContactManagementResponse) Public Overridable Property FormattedNotes As Nullable(Of Boolean) ''' '''If sent, all other search parameters will be ignored. ''' Public Overridable Property Ref As String Public Overridable Property Acct As Nullable(Of Integer) Public Overridable Property DateFrom As Nullable(Of Date) Public Overridable Property DateTo As Nullable(Of Date) Public Overridable Property IncludeClosed As Nullable(Of Boolean) ''' ''' ''' Public Overridable Property SearchString As String Public Overridable Property ActionId As Nullable(Of Long) End Class Public Partial Class SearchContactManagementResponse Inherits BaseResponse Public Sub New() ContactManagementRecords = New List(Of ContactManagementRecord) End Sub Public Overridable Property ContactManagementRecords As List(Of ContactManagementRecord) End Class End Namespace End Namespace