(* Options: Date: 2025-05-10 01:10:06 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: GetSchedulingTypesRequest.* //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 TypeInfo() = [] member val Id:Int64 = new Int64() with get,set [] member val Desc:String = null with get,set [] member val Length:Int32 = new Int32() with get,set [] member val Topic:String = null with get,set [] member val RecurranceType:String = null with get,set [] member val MembershipType:String = null with get,set [] member val Rate:Decimal = new Decimal() with get,set [] member val GroupingId:Nullable = new Nullable() with get,set [] member val GroupingDesc:String = null with get,set [] [] type BaseResponse() = /// /// /// [] [] member val Status:BaseResponseResult = null with get,set [] [] type GetSchedulingTypesResponse() = inherit BaseResponse() [] member val Types:ResizeArray = new ResizeArray() with get,set /// ///GetSchedulingTypesRequires active-e Lesson Scheduling Service /// [] [] [] type GetSchedulingTypesRequest() = inherit BaseRequest() interface IReturn /// ///Type ID to look up. If sent, all other parameters will be ignored. /// [] [] member val TypeId:Nullable = new Nullable() with get,set /// ///If sent, only types in the sent grouping will be returned. /// [] [] member val GroupingId:Nullable = new Nullable() with get,set /// ///If sent, only types taught by the sent instructor will be returned. /// [] [] member val InstructorId:Nullable = new Nullable() with get,set /// ///If sent, only types taught at the sent location will be returned. /// [] [] member val LocationId:Nullable = new Nullable() with get,set /// ///If sent, should be Private or Group. If Private, only Private Lesson Types will be returned. If Group, only Group Lesson Types will be returned. /// [] [] member val MembershipType:String = null with get,set