(* Options: Date: 2025-05-10 02:36:51 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: GetSchedulingInstructorsRequest.* //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 InstructorAvailabilityInfo() = [] member val Sunday:Boolean = new Boolean() with get,set [] member val Monday:Boolean = new Boolean() with get,set [] member val Tuesday:Boolean = new Boolean() with get,set [] member val Wednesday:Boolean = new Boolean() with get,set [] member val Thursday:Boolean = new Boolean() with get,set [] member val Friday:Boolean = new Boolean() with get,set [] member val Saturday:Boolean = new Boolean() with get,set [] [] type InstructorInfo() = [] member val Id:Int32 = new Int32() with get,set [] member val Name:String = null with get,set [] member val Email:String = null with get,set [] member val Topic:String = null with get,set [] member val AvailabilityInfo:InstructorAvailabilityInfo = null with get,set [] [] type BaseResponse() = /// /// /// [] [] member val Status:BaseResponseResult = null with get,set [] [] type GetSchedulingInstructorsResponse() = inherit BaseResponse() [] member val Instructors:ResizeArray = new ResizeArray() with get,set /// ///GetSchedulingInstructorsRequires active-e Lesson Scheduling Service /// [] [] [] type GetSchedulingInstructorsRequest() = inherit BaseRequest() interface IReturn /// ///Instructor ID to lookup. If sent, other parameters will be ignored. /// [] [] member val InstructorId:Nullable = new Nullable() with get,set /// ///If sent, only instructors who teach lessons with the passed grouping will be returned. /// [] [] member val GroupingId:Nullable = new Nullable() with get,set /// ///If sent, only instructors who teach lessons with the passed type will be returned. /// [] [] member val TypeId:Nullable = new Nullable() with get,set /// ///If sent, only instructors who have an availability record at the passed location will be returned. /// [] [] member val LocationId:Nullable = new Nullable() with get,set /// ///If true, basic Availability Info will be included in the response /// [] [] member val IncludeAvailabilityInfo:Boolean = new Boolean() with get,set