(* Options: Date: 2025-05-10 03:20:31 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: GetCustomerTokensRequest.* //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 CcInfo() = /// ///Token returned from processor /// [] [] member val TokenStr:String = null with get,set /// ///Card Type (VISA, MCARD, AMEX, DSCVR) /// [] [] member val CardType:String = null with get,set /// ///Last four of the card /// [] [] member val LastFour:String = null with get,set /// ///Expiration Date of the Card. (MM/YY) /// [] [] member val Expiration:String = null with get,set /// ///Reason the card is on file. /// [] [] member val ReasonOnFile:String = null with get,set /// ///ID of the existing Token Record in AIM, if applicable /// [] [] member val TokenPk:Nullable = new Nullable() with get,set /// ///Is this the customer's primary card? Defaults to false. /// [] [] member val Primary:Nullable = new Nullable() with get,set [] [] type AchDetail() = [] member val Name:String = null with get,set [] member val BankNumber:String = null with get,set [] member val Routing:String = null with get,set [] member val Type:String = null with get,set [] [] type BaseResponse() = /// /// /// [] [] member val Status:BaseResponseResult = null with get,set [] [] type GetCustomerTokensResponse() = inherit BaseResponse() [] member val CustomerTokens:ResizeArray = new ResizeArray() with get,set [] member val Ach:AchDetail = null with get,set /// ///GetCustomerTokensRequires active-e Customer Service. /// [] [] [] type GetCustomerTokensRequest() = inherit BaseSecureRequest() interface IReturn [] member val GetExpiredCards:Nullable = new Nullable() with get,set [] member val GetInactiveCards:Nullable = new Nullable() with get,set [] member val Acct:Nullable = new Nullable() with get,set