' Options: 'Date: 2025-05-10 02:34:27 '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: PostSchedulingGroupRequest.* '''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 CcInfo ''' '''Token returned from processor ''' Public Overridable Property TokenStr As String ''' '''Card Type (VISA, MCARD, AMEX, DSCVR) ''' Public Overridable Property CardType As String ''' '''Last four of the card ''' Public Overridable Property LastFour As String ''' '''Expiration Date of the Card. (MM/YY) ''' Public Overridable Property Expiration As String ''' '''Reason the card is on file. ''' Public Overridable Property ReasonOnFile As String ''' '''ID of the existing Token Record in AIM, if applicable ''' Public Overridable Property TokenPk As Nullable(Of Long) ''' '''Is this the customer's primary card? Defaults to false. ''' Public Overridable Property Primary As Nullable(Of Boolean) End Class Public Partial Class CustomerInfo ''' '''The WebId of the customer. Optional. ''' Public Overridable Property WebId As Nullable(Of Integer) ''' '''Name of the customer. ''' Public Overridable Property Name As String ''' '''Address line 1 of the customer ''' Public Overridable Property Addr1 As String ''' '''Address line 2 of the customer ''' Public Overridable Property Addr2 As String ''' '''City of the customer ''' Public Overridable Property City As String ''' '''State/Province of the customer ''' Public Overridable Property St As String ''' '''Zip code of the customer ''' Public Overridable Property Zip As String ''' '''Country of the customer ''' Public Overridable Property Country As String ''' '''Phone number of the customer ''' Public Overridable Property Phone As String ''' '''Email address of the customer. Required. ''' Public Overridable Property Email 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 ''' '''PostSchedulingGroupRequires active-e Lesson Scheduling Service ''' Public Partial Class PostSchedulingGroupRequest Inherits BaseRequest Implements IReturn(Of PostSchedulingPrivateResponse) Public Sub New() FormInputList = New List(Of FormInput) End Sub ''' '''Class ID ''' Public Overridable Property ClassId As Guid ''' '''The start date of the student. ''' Public Overridable Property AppointmentStart As Nullable(Of Date) ''' '''The name of the student ''' Public Overridable Property StudentName As String ''' '''Online reference number of this appointment ''' Public Overridable Property RefNumber As String ''' '''The AIM customer account # of the customer. Optional. ''' Public Overridable Property CustomerAcct As Nullable(Of Integer) ''' '''Customer Information ''' Public Overridable Property CustomerInfo As CustomerInfo ''' '''Additional Customer or Appointment info ''' Public Overridable Property FormInputList As List(Of FormInput) ''' '''Credit Card info of the customer for this appointment ''' Public Overridable Property CcInfo As CcInfo ''' '''Notes on this appointment ''' Public Overridable Property Notes As String End Class Public Partial Class PostSchedulingPrivateResponse Inherits BaseResponse End Class End Namespace End Namespace