' Options: 'Date: 2025-08-04 00:18:42 '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: PostTeeSlotsRequest.* '''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 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. If linking to an Attribute, this should match the Tag value. ''' 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 ''' '''PostTeeSlotsRequires active-e Tee-Sheet Service ''' Public Partial Class PostTeeSlotsRequest Inherits BaseSecureRequest Implements IReturn(Of PostTeeSlotsResponse) Public Sub New() FormInputList = New List(Of FormInput) GuestInfo = New List(Of CustomerInfo) GuestNotes = New List(Of String) End Sub ''' ''' ''' Public Overridable Property SlotId As Nullable(Of Long) ''' '''Number of players. Defaults to 1 ''' Public Overridable Property NumberOfPlayers As Nullable(Of Integer) ''' '''Number of players requiring carts. Defaults to 0 ''' Public Overridable Property NumberOfPlayersRequiringCarts As Nullable(Of Integer) ''' '''Number of holes to book. Defaults to the number of holes in the course. ''' Public Overridable Property NumberOfHoles As Nullable(Of Integer) ''' ''' ''' Public Overridable Property FormInputList As List(Of FormInput) ''' ''' ''' Public Overridable Property CcInfo As CcInfo ''' ''' ''' Public Overridable Property CustomerInfo As CustomerInfo Public Overridable Property GuestInfo As List(Of CustomerInfo) ''' ''' ''' Public Overridable Property CusAcct As Nullable(Of Integer) Public Overridable Property Notes As String Public Overridable Property GuestNotes As List(Of String) End Class Public Partial Class PostTeeSlotsResponse Inherits BaseResponse End Class End Namespace End Namespace