(* Options: Date: 2025-05-10 04:46:40 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: C2BAccessoryListingRequest.* //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 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 C2BDistrictGeneric() = [] member val DistrictName:String = null with get,set [] member val SchoolCount:Int32 = new Int32() with get,set [] member val TeacherCount:Int32 = new Int32() with get,set [] member val Topic:String = null with get,set [] member val Id:Int64 = new Int64() with get,set [] [] type BaseResponse() = /// /// /// [] [] member val Status:BaseResponseResult = null with get,set [] [] type C2BGetDistrictInfoResponse() = inherit BaseResponse() [] member val Districts:ResizeArray = new ResizeArray() with get,set [] member val TeacherTableExists:Boolean = new Boolean() with get,set /// ///C2BAccessoryListingRequires active-e Contracts Service. /// [] [] [] type C2BAccessoryListingRequest() = inherit BaseSecureRequest() interface IReturn /// ///Defaults to True /// [] [] member val IncludeAccessories:Nullable = new Nullable() with get,set /// ///Defaults to False /// [] [] member val IncludeDeliveryOptions:Nullable = new Nullable() with get,set /// ///Defaults to False /// [] [] member val IncludeMaintenanceOptions:Nullable = new Nullable() with get,set /// ///If passed, only accessories for the given instrument are returned /// [] [] member val InstrumentId:Nullable = new Nullable() with get,set