' Options: 'Date: 2025-05-10 01:49:57 '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: GetServiceEstimatesRequest.* '''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 ''' '''GetServiceEstimatesRequires active-e Service Tickets Service ''' Public Partial Class GetServiceEstimatesRequest Inherits BaseSecureRequest Implements IReturn(Of GetServiceEstimatesResponse) Public Overridable Property UseWebFormatting As Nullable(Of Boolean) End Class Public Partial Class GetServiceEstimatesResponse Inherits BaseResponse Public Sub New() ServiceEstimates = New List(Of ServiceEstimate) End Sub Public Overridable Property ServiceEstimates As List(Of ServiceEstimate) Public Partial Class ServiceEstimate Public Overridable Property TicketNumber As String Public Overridable Property EstimatedAmount As Decimal Public Overridable Property DateTime As Date Public Overridable Property InventoryItem As String Public Overridable Property ServiceDescription As String Public Overridable Property Notes As String End Class End Class End Namespace End Namespace