(* Options: Date: 2025-05-10 03:26:52 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: PostTimeSlotRequest.* //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 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 BaseResponse() = /// /// /// [] [] member val Status:BaseResponseResult = null with get,set [] [] type PostTimeSlotResponse() = inherit BaseResponse() /// ///PostTimeSlotRequires active-e Contracts Service, active-e Service Ticket Service, active-e Lesson Scheduling Service, active-e Vortx E-Commerce Service, or active-e 3rd Party E-Commerce Service /// [] [] [] type PostTimeSlotRequest() = inherit BaseSecureRequest() interface IReturn /// /// /// [] [] member val SlotId:Nullable = new Nullable() with get,set /// /// /// [] [] member val CustomerAcct:Nullable = new Nullable() with get,set /// /// /// [] [] member val CustomerName:String = null with get,set /// /// /// [] [] member val WebRef:String = null with get,set /// /// /// [] [] member val AIMRef:String = null with get,set [] member val Notes:String = null with get,set