(* Options: Date: 2025-05-10 02:38:16 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: GetSchedulingCalendarRequest.* //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 AvailabilityInfo() = [] member val StartTime:DateTime = new DateTime() with get,set [] member val StartTimeString:String = null with get,set [] member val Length:Int32 = new Int32() with get,set [] member val InstructorId:Int32 = new Int32() with get,set [] member val LocationId:Int64 = new Int64() with get,set [] [] type DayTimeInfoObj() = [] member val WeekDayInt:Int32 = new Int32() with get,set [] member val WeekDay:String = null with get,set [] member val StartTime:DateTime = new DateTime() with get,set [] member val StartTimeString:String = null with get,set [] [] type GroupClassInfo() = [] member val DayTimeInfo:ResizeArray = new ResizeArray() with get,set [] member val StartDate:DateTime = new DateTime() with get,set [] member val EndDate:DateTime = new DateTime() with get,set [] member val Guid:Guid = new Guid() with get,set [] member val Length:Int32 = new Int32() with get,set [] member val InstructorId:Int32 = new Int32() with get,set [] member val LocationId:Int64 = new Int64() with get,set [] member val ClassName:String = null with get,set [] member val ClassDesc:String = null with get,set [] member val ClassSummary:String = null with get,set [] member val MaxClassMembers:Int32 = new Int32() with get,set [] member val CurrentClassMembers:Int32 = new Int32() with get,set [] member val Notes:String = null with get,set [] [] type TimeIncrementByInstructor() = [] member val InstructorId:Int32 = new Int32() with get,set [] member val TimeIncrement:Int32 = new Int32() with get,set [] [] type BaseResponse() = /// /// /// [] [] member val Status:BaseResponseResult = null with get,set [] [] type GetSchedulingCalendarResponse() = inherit BaseResponse() [] member val Availabilities:ResizeArray = new ResizeArray() with get,set [] member val GroupClasses:ResizeArray = new ResizeArray() with get,set [] member val TimeIncrement:Int32 = new Int32() with get,set [] member val TimeIncrementsByInstructor:ResizeArray = new ResizeArray() with get,set /// ///GetSchedulingCalendarRequires active-e Lesson Scheduling Service. This API call was accidentally named GetSchedulingCalender in the past. /// [] [] [] [] type GetSchedulingCalendarRequest() = inherit BaseRequest() interface IReturn /// ///The type of lessons to get a schedule for. /// [] [] member val TypeId:Int64 = new Int64() with get,set /// ///If sent, lessons from this date/time onward will be returned. Otherwise the current date/time is used. /// [] [] member val DateFrom:String = null with get,set /// ///If sent, lessons from before this date/time will be returned. Otherwise the DateFrom plus one week is used. /// [] [] member val DateTo:String = null with get,set /// ///If sent, only lessons taught by the sent instructor will be returned. /// [] [] member val InstructorId:Nullable = new Nullable() with get,set /// ///If sent, lessons taught at the sent location will be returned. /// [] [] member val LocationId:Nullable = new Nullable() with get,set