' Options: 'Date: 2025-08-04 00:02:07 '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: C2BToggleContractLockRequest.* '''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 ''' '''The OAuthToken token return by AeServices30 ''' Public Overridable Property OAuthToken As String ''' '''The Device ID of the Mobile Device. Not used for non-mobile devices. ''' Public Overridable Property DeviceId As String ''' '''An identifier for your integration ''' Public Overridable Property AppId As String End Class Public Partial Class BaseResponse ''' ''' ''' Public Overridable Property Status As BaseResponseResult End Class Public Partial Class BaseSecureRequest Inherits BaseRequest ''' '''The Login Token return by the Security API. Required for secured calls. ''' Public Overridable Property Token As String End Class ''' '''C2BToggleContractLockRequires active-e Contracts Service. ''' Public Partial Class C2BToggleContractLockRequest Inherits BaseSecureRequest Implements IReturn(Of C2BToggleContractLockResponse) Public Sub New() WebRefs = New List(Of String) End Sub ''' '''LOCK or UNLOCK ''' Public Overridable Property Mode As String ''' '''A single WebRef to lock or unlock. An error will be returned if the record is already in that state. ''' Public Overridable Property WebRef As String ''' '''A list of WebRefw to lock or unlock. No errors will be returned if one or more records are already in that state. ''' Public Overridable Property WebRefs As List(Of String) End Class Public Partial Class C2BToggleContractLockResponse Inherits BaseResponse End Class End Namespace End Namespace