(* Options: Date: 2025-05-10 02:18:08 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: CheckEmailRequest.* //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 AccountInfo() = [] member val Id:Int32 = new Int32() with get,set [] member val Enabled:Boolean = new Boolean() with get,set [] [] type BaseResponse() = /// /// /// [] [] member val Status:BaseResponseResult = null with get,set [] [] type CheckEmailResponse() = inherit BaseResponse() [] member val AccountInfo:ResizeArray = new ResizeArray() with get,set /// ///CheckEmailRequires active-e Vortx E-Commerce. /// [] [] [] type CheckEmailRequest() = inherit BaseRequest() interface IReturn [] member val Email:String = null with get,set [] member val WebId:Int32 = new Int32() with get,set