(* Options: Date: 2025-05-10 01:46:25 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: GetSchedulingLocationsRequest.* //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 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 BaseResponse() = /// /// /// [] [] member val Status:BaseResponseResult = null with get,set [] [] type GetSchedulingLocationsResponse() = inherit BaseResponse() [] member val Locations:ResizeArray = new ResizeArray() with get,set /// ///GetSchedulingLocationsRequires active-e Lesson Scheduling Service /// [] [] [] type GetSchedulingLocationsRequest() = inherit BaseRequest() interface IReturn /// ///Location lookup. If sent, all other parameters will be ignored. /// [] [] member val LocationId:Nullable = new Nullable() with get,set /// ///If sent, only locations that offer this lesson type will be returned. /// [] [] member val TypeId:Nullable = new Nullable() with get,set /// ///If sent, only locations that offer lessons of this grouping will be returned. /// [] [] member val GroupingId:Nullable = new Nullable() with get,set /// ///If sent, only locations where the sent instructor teaches will be returned. /// [] [] member val InstructorId:Nullable = new Nullable() with get,set [] member val IncludeInactiveLocations:Boolean = new Boolean() with get,set