' Options: 'Date: 2025-05-10 04:21: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: StationReservationRequest.* '''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 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 ''' '''StationReservationRequires active-e Station Reservations Service ''' Public Partial Class StationReservationRequest Inherits BaseSecureRequest Implements IReturn(Of StationReservationResponse) ''' '''The ID of the station being reserved ''' Public Overridable Property StationId As Long ''' '''The Customer Acct assosicated with the reservation. Either this or CustomerInfo is required. ''' Public Overridable Property Acct As Nullable(Of Integer) ''' ''' ''' Public Overridable Property CustomerInfo As CustomerInfo ''' ''' ''' Public Overridable Property CcInfo As CcInfo ''' '''The start date/time of the reservation. ''' Public Overridable Property Start As Date ''' '''The length (in minutes) of the reservation. ''' Public Overridable Property Length As Integer ''' '''Number of guests (in addition to the customer) included in this reservation. Defaults to 0. ''' Public Overridable Property Guests As Integer ''' '''Notes ''' Public Overridable Property Notes As String End Class Public Partial Class StationReservationResponse Inherits BaseResponse End Class End Namespace End Namespace