(* Options: Date: 2025-05-10 03:25:10 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: C2BGetPlanInfoRequest.* //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 C2BPlanGeneric() = [] member val Id:Int64 = new Int64() with get,set [] member val Code:String = null with get,set [] member val Name:String = null with get,set [] member val Months:Int32 = new Int32() with get,set [] member val Topic:String = null with get,set [] member val FinalTopic:String = null with get,set [] member val Url:String = null with get,set [] [] type BaseResponse() = /// /// /// [] [] member val Status:BaseResponseResult = null with get,set [] [] type C2BGetPlanInfoResponse() = inherit BaseResponse() [] member val Plans:ResizeArray = new ResizeArray() with get,set /// ///C2BGetPlanInfoRequires active-e Contracts Service. /// [] [] [] type C2BGetPlanInfoRequest() = inherit BaseRequest() interface IReturn /// ///If sent, only info on the plan code sent will be returned. Otherwise info on all plan codes will be returned. /// [] [] member val PlanCode:String = null with get,set