(* Options: Date: 2025-05-10 03:53: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: PrintReceiptRequest.* //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 BaseResponse() = /// /// /// [] [] member val Status:BaseResponseResult = null with get,set [] [] type PrintReceiptResponse() = inherit BaseResponse() [] member val PdfStream:String = null with get,set [] member val EmailSubject:String = null with get,set [] member val EmailBody:String = null with get,set /// ///PrintReceiptRequires active-e Customer Service /// [] [] [] type PrintReceiptRequest() = inherit BaseSecureRequest() interface IReturn [] member val Ref:String = null with get,set /// ///Can be STREAM, PRINT, or EMAIL. Defaults to STREAM /// [] [] member val OutputType:String = null with get,set /// ///Only applies to OutputTypes of PRINT and EMAIL. The listening workstation to handle the request. /// [] [] member val OutputWorkstation:Nullable = new Nullable() with get,set /// ///Only applies to OutputType of EMAIL. The email address to send to. /// [] [] member val OutputTo:String = null with get,set /// ///Only applies to employee logins. Customer account of the receipt. /// [] [] member val CustomerAcct:Nullable = new Nullable() with get,set /// ///Date of the receipt. /// [] [] member val Date:Nullable = new Nullable() with get,set