(* Options: Date: 2025-05-10 02:01:05 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: AdvancedCustomerSearchRequest.* //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 AdvancedCustomerSearchRecord() = [] member val Acct:Int32 = new Int32() with get,set [] member val Sub:Nullable = new Nullable() with get,set [] member val Name:String = null with get,set [] member val ResultType:String = null with get,set [] member val ResultDetail:String = null with get,set [] member val DateTime:Nullable = new Nullable() with get,set [] member val Amount:Nullable = new Nullable() with get,set [] [] type BaseResponse() = /// /// /// [] [] member val Status:BaseResponseResult = null with get,set [] [] type AdvancedCustomerSearchResponse() = inherit BaseResponse() [] member val RemainingRecords:Int64 = new Int64() with get,set [] member val Customers:ResizeArray = new ResizeArray() with get,set /// ///AdvancedCustomerSearchRequires active-e Customer Service. /// [] [] [] type AdvancedCustomerSearchRequest() = inherit BaseSecureRequest() interface IReturn /// ///The type of advanced search. Options are SUBACCOUNT (Students and Dependents), CHECK (Exact Check# lookup), and CREDITCARD (Last 4 lookup) /// [] [] member val SearchType:String = null with get,set /// ///What to search for /// [] [] member val SearchString:String = null with get,set /// ///The Starting Offset. Defaults to 0 if not sent. /// [] [] member val StartOffset:Nullable = new Nullable() with get,set /// ///The # of records to be returned. Defaults to 100 if not sent. /// [] [] member val RecordCount:Nullable = new Nullable() with get,set