(* Options: Date: 2025-05-10 03:23:49 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: GetCustomerHistoryRequest.* //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 CustomerHistoryGeneric() = [] member val Date:DateTime = new DateTime() with get,set [] member val DateStr:String = null with get,set [] member val Ref:String = null with get,set [] member val Desc:String = null with get,set [] member val Amount:Decimal = new Decimal() with get,set [] member val OrigAmount:Decimal = new Decimal() with get,set [] member val Late:Boolean = new Boolean() with get,set [] member val RefType:String = null with get,set [] member val PO:String = null with get,set [] member val EstReceivedDate:Nullable = new Nullable() with get,set [] [] type BaseResponse() = /// /// /// [] [] member val Status:BaseResponseResult = null with get,set [] [] type GetCustomerHistoryResponse() = inherit BaseResponse() [] member val CustomerHistory:ResizeArray = new ResizeArray() with get,set /// ///GetCustomerHistoryRequires active-e Customer Service. /// [] [] [] type GetCustomerHistoryRequest() = inherit BaseSecureRequest() interface IReturn [] member val GetInvoices:Nullable = new Nullable() with get,set [] member val GetTickets:Nullable = new Nullable() with get,set [] member val GetProposals:Nullable = new Nullable() with get,set [] member val GetContracts:Nullable = new Nullable() with get,set [] member val GetOrders:Nullable = new Nullable() with get,set [] member val GetShortTermRentals:Nullable = new Nullable() with get,set [] member val GetWebPayments:Nullable = new Nullable() with get,set [] member val ShowClosed:Nullable = new Nullable() with get,set [] member val GetPaymentsDue:Nullable = new Nullable() with get,set [] member val DateFrom:String = null with get,set [] member val DateTo:String = null with get,set [] member val Acct:Nullable = new Nullable() with get,set [] member val GetMemberships:Nullable = new Nullable() with get,set [] member val GetPendingWebOrders:Nullable = new Nullable() with get,set [] member val GetFutureTeeTimes:Nullable = new Nullable() with get,set [] member val GetStationReservations:Nullable = new Nullable() with get,set [] member val GetPendingWebRentals:Nullable = new Nullable() with get,set [] member val GetValuePacks:Nullable = new Nullable() with get,set [] member val IncludeUninvoicedScheduling:Nullable = new Nullable() with get,set [] member val IncludeOnHold:Nullable = new Nullable() with get,set [] member val GetConsignments:Nullable = new Nullable() with get,set [] member val GetRecurringHeaderInfo:Nullable = new Nullable() with get,set