' Options: 'Date: 2025-05-10 01:36:47 '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: ScheduledExchangesPostRequest.* '''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 ''' '''ScheduledExchangesRequires active-e Contracts Service. ''' Public Partial Class ScheduledExchangesPostRequest Inherits BaseSecureRequest Implements IReturn(Of ScheduledExchangesPostResponse) Public Sub New() FormInputList = New List(Of FormInput) End Sub Public Overridable Property Acct As Integer Public Overridable Property Sub As Integer Public Overridable Property ExchangedItemID As Long Public Overridable Property PostingDate As Date Public Overridable Property ScheduledDate As Date Public Overridable Property NewSku As String Public Overridable Property OptionId As Nullable(Of Long) Public Overridable Property ExchangeNotes As String Public Overridable Property Processed As Nullable(Of Boolean) Public Overridable Property StatusId As Nullable(Of Long) ''' '''Key/Value pair only. The 'Encrypted' proprety is not used for this API call. ''' Public Overridable Property FormInputList As List(Of FormInput) End Class Public Partial Class ScheduledExchangesPostResponse Inherits BaseResponse Public Overridable Property ExchangeID As Nullable(Of Long) End Class End Namespace End Namespace