(* Options: Date: 2025-06-02 05:32:52 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: SaleInfoRequest.* //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 DiscountFromPriceLevel() = [] member val BasePriceLevel:String = null with get,set [] member val DisountPercentage:Decimal = new Decimal() with get,set [] [] type RecurringSaleDay() = [] member val Weekday:String = null with get,set [] member val BeginHour:Int32 = new Int32() with get,set [] member val BeginMinute:Int32 = new Int32() with get,set [] member val EndHour:Int32 = new Int32() with get,set [] member val EndMinute:Int32 = new Int32() with get,set [] [] type RecurringSaleInfo() = [] member val Days:ResizeArray = new ResizeArray() with get,set [] [] type SaleRecord() = [] member val SadPk:Int64 = new Int64() with get,set [] member val SkuPk:Int64 = new Int64() with get,set [] member val SaqPk:Int64 = new Int64() with get,set [] member val Model:String = null with get,set [] member val SKU:String = null with get,set [] member val LocationId:Int64 = new Int64() with get,set [] member val StartDate:DateTime = new DateTime() with get,set [] member val EndDate:DateTime = new DateTime() with get,set [] member val CustomerAccount:Nullable = new Nullable() with get,set [] member val CustomerDefaultId:Nullable = new Nullable() with get,set [] member val Condition:String = null with get,set [] member val DiscountFromPriceLevel:DiscountFromPriceLevel = null with get,set [] member val DiscountByPriceLevel:String = null with get,set [] member val DiscountBySetPrice:Nullable = new Nullable() with get,set [] member val DiscountByAmount:Nullable = new Nullable() with get,set [] member val RecurringSale:RecurringSaleInfo = null with get,set [] [] type BaseResponse() = /// /// /// [] [] member val Status:BaseResponseResult = null with get,set [] [] type SaleInfoResponse() = inherit BaseResponse() [] member val SaleRecords:ResizeArray = new ResizeArray() with get,set /// ///SaleInfoRequires active-e Inventory Service /// [] [] [] type SaleInfoRequest() = inherit BaseSecureRequest() interface IReturn [] member val LocationId:Nullable = new Nullable() with get,set /// ///If sent, only sales that are active during the sent Date/Time are returned. Otherwise, the current Date/Time is used /// [] [] member val DateTime:Nullable = new Nullable() with get,set