(* Options: Date: 2025-05-10 04:50:55 Version: 8.40 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://active-ewebservice.biz/aeservices30/api //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: StationReservationRequest.* //ExcludeTypes: //InitializeCollections: True //AddNamespaces: *) namespace AIM.WebService open System open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations [] [] type BaseRequest() = /// ///This is your AIM API Key provided by Tri-Tech /// [] [] member val ApiKey:String = null with get,set [] [] member val OAuthToken:String = null with get,set [] [] type BaseSecureRequest() = inherit BaseRequest() /// /// /// [] [] member val Token:String = null with get,set /// /// /// [] [] member val DeviceId:String = null with get,set /// /// /// [] [] member val AppId:String = null with get,set [] [] type CcInfo() = /// ///Token returned from processor /// [] [] member val TokenStr:String = null with get,set /// ///Card Type (VISA, MCARD, AMEX, DSCVR) /// [] [] member val CardType:String = null with get,set /// ///Last four of the card /// [] [] member val LastFour:String = null with get,set /// ///Expiration Date of the Card. (MM/YY) /// [] [] member val Expiration:String = null with get,set /// ///Reason the card is on file. /// [] [] member val ReasonOnFile:String = null with get,set /// ///ID of the existing Token Record in AIM, if applicable /// [] [] member val TokenPk:Nullable = new Nullable() with get,set /// ///Is this the customer's primary card? Defaults to false. /// [] [] member val Primary:Nullable = new Nullable() with get,set [] [] type CustomerInfo() = /// ///The WebId of the customer. Optional. /// [] [] member val WebId:Nullable = new Nullable() with get,set /// ///Name of the customer. /// [] [] member val Name:String = null with get,set /// ///Address line 1 of the customer /// [] [] member val Addr1:String = null with get,set /// ///Address line 2 of the customer /// [] [] member val Addr2:String = null with get,set /// ///City of the customer /// [] [] member val City:String = null with get,set /// ///State/Province of the customer /// [] [] member val St:String = null with get,set /// ///Zip code of the customer /// [] [] member val Zip:String = null with get,set /// ///Country of the customer /// [] [] member val Country:String = null with get,set /// ///Phone number of the customer /// [] [] member val Phone:String = null with get,set /// ///Email address of the customer. Required. /// [] [] member val Email:String = null with get,set [] [] type BaseResponse() = /// /// /// [] [] member val Status:BaseResponseResult = null with get,set [] [] type StationReservationResponse() = inherit BaseResponse() /// ///StationReservationRequires active-e Station Reservations Service /// [] [] [] type StationReservationRequest() = inherit BaseSecureRequest() interface IReturn /// ///The ID of the station being reserved /// [] [] member val StationId:Int64 = new Int64() with get,set /// ///The Customer Acct assosicated with the reservation. Either this or CustomerInfo is required. /// [] [] member val Acct:Nullable = new Nullable() with get,set /// /// /// [] [] member val CustomerInfo:CustomerInfo = null with get,set /// /// /// [] [] member val CcInfo:CcInfo = null with get,set /// ///The start date/time of the reservation. /// [] [] member val Start:DateTime = new DateTime() with get,set /// ///The length (in minutes) of the reservation. /// [] [] member val Length:Int32 = new Int32() with get,set /// ///Number of guests (in addition to the customer) included in this reservation. Defaults to 0. /// [] [] member val Guests:Int32 = new Int32() with get,set /// ///Notes /// [] [] member val Notes:String = null with get,set