(* Options: Date: 2025-05-10 03:47:03 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: GetStationsRequest.* //ExcludeTypes: //InitializeCollections: True //AddNamespaces: *) namespace AIM 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 LocationInfo() = [] member val Id:Int64 = new Int64() with get,set [] member val Desc:String = null with get,set [] member val ShortDesc:String = null with get,set [] member val Region:String = null with get,set [] member val Latitude:Decimal = new Decimal() with get,set [] member val Longitude:Decimal = new Decimal() with get,set [] member val InStorePickup:String = null with get,set [] member val Active:Boolean = new Boolean() with get,set [] member val CashSaleAcct:Nullable = new Nullable() with get,set [] [] type ReservationInfo() = [] member val Start:DateTime = new DateTime() with get,set [] member val End:DateTime = new DateTime() with get,set [] member val CustomerAcct:Nullable = new Nullable() with get,set [] [] type StationInfo() = [] member val Id:Int64 = new Int64() with get,set [] member val Name:String = null with get,set [] member val WebDescription:String = null with get,set [] member val MaxUsers:Int32 = new Int32() with get,set [] member val Location:LocationInfo = null with get,set [] member val CurrentStatus:String = null with get,set [] member val Reservations:ResizeArray = new ResizeArray() with get,set [] member val AvailabilityCalendar:ResizeArray = new ResizeArray() with get,set [] member val Topic:String = null with get,set [] [] type BaseResponse() = /// /// /// [] [] member val Status:BaseResponseResult = null with get,set [] [] type GetStationsResponse() = inherit BaseResponse() [] member val Stations:ResizeArray = new ResizeArray() with get,set /// ///GetStationsRequires active-e Station Reservations Service /// [] [] [] type GetStationsRequest() = inherit BaseSecureRequest() interface IReturn /// ///If sent, only stations at the passed location will be returned. /// [] [] member val LocationId:Nullable = new Nullable() with get,set /// ///If sent, only stations in the passed Station group will be returned /// [] [] member val GroupId:Nullable = new Nullable() with get,set [] member val Acct:Nullable = new Nullable() with get,set [] member val GenerateAvailabilityCalendar:Boolean = new Boolean() with get,set /// ///If sent, the availability calendar will be for the next X days /// [] [] member val AvailabilityCalendarDays:Nullable = new Nullable() with get,set /// ///If sent, the availability calendar will be for the sent date only /// [] [] member val AvailabilityCalendarDate:Nullable = new Nullable() with get,set /// ///If sent, the availability calendar will look for available slots of length X minutes. Uses the interval of the station group if not sent. /// [] [] member val AvailabilityCalendarReservationLength:Nullable = new Nullable() with get,set