(* Options: Date: 2025-05-10 03:27:57 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: GetStationGroupsRequest.* //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 WeekdayInfo() = [] member val Weekday:String = null with get,set [] member val WeekdayInt:Int32 = new Int32() with get,set [] member val Open:Boolean = new Boolean() with get,set [] member val OpenHour:Nullable = new Nullable() with get,set [] member val OpenMinute:Nullable = new Nullable() with get,set [] member val CloseHour:Nullable = new Nullable() with get,set [] member val CloseMinute:Nullable = new Nullable() with get,set [] [] type StationGroupMembershipLevel() = [] member val Level:Int32 = new Int32() with get,set [] member val DaysAhead:Int32 = new Int32() with get,set [] member val AllowBooking:Boolean = new Boolean() with get,set [] [] type StationGroupMembershipData() = [] member val Levels:ResizeArray = new ResizeArray() with get,set [] [] type StationGroupInfo() = [] member val Id:Int64 = new Int64() with get,set [] member val Description:String = null with get,set [] member val WebDescription:String = null with get,set [] member val Topic:String = null with get,set [] member val Interval:Int32 = new Int32() with get,set [] member val Buffer:Int32 = new Int32() with get,set [] member val Location:LocationInfo = null with get,set [] member val Yards:Int32 = new Int32() with get,set [] member val Weekdays:ResizeArray = new ResizeArray() with get,set [] member val MembershipData:StationGroupMembershipData = null with get,set [] [] type BaseResponse() = /// /// /// [] [] member val Status:BaseResponseResult = null with get,set [] [] type GetStationGroupsResponse() = inherit BaseResponse() [] member val StationGroups:ResizeArray = new ResizeArray() with get,set /// ///GetStationGroupsRequires active-e Station Reservations Service /// [] [] [] type GetStationGroupsRequest() = inherit BaseSecureRequest() interface IReturn /// ///If sent, only station groups at the passed location will be returned. /// [] [] member val LocationId:Nullable = new Nullable() with get,set