(* Options: Date: 2025-05-10 04:10:24 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: InventoryAutoPriceRequest.* //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 AutoPriceRecord() = [] member val Id:Int64 = new Int64() with get,set [] member val Description:String = null with get,set [] member val Category:Nullable = new Nullable() with get,set [] member val CategoryDescription:String = null with get,set [] member val SubCategory:Nullable = new Nullable() with get,set [] member val SubCategoryDescription:String = null with get,set [] member val Vendor:Nullable = new Nullable() with get,set [] member val VendorName:String = null with get,set [] [] type BaseResponse() = /// /// /// [] [] member val Status:BaseResponseResult = null with get,set [] [] type InventoryAutoPriceResponse() = inherit BaseResponse() [] member val AutoPriceRecords:ResizeArray = new ResizeArray() with get,set [] member val MinimumPrice:Nullable = new Nullable() with get,set [] member val PriceA:Nullable = new Nullable() with get,set [] member val PriceB:Nullable = new Nullable() with get,set [] member val PriceC:Nullable = new Nullable() with get,set [] member val OurPrice:Nullable = new Nullable() with get,set /// ///InventoryAutoPriceRequires active-e Inventory Service /// [] [] [] type InventoryAutoPriceRequest() = inherit BaseSecureRequest() interface IReturn [] member val Category:Nullable = new Nullable() with get,set [] member val SubCategory:Nullable = new Nullable() with get,set [] member val Vendor:Nullable = new Nullable() with get,set [] member val AutoPriceId:Nullable = new Nullable() with get,set [] member val MinimumPrice:Decimal = new Decimal() with get,set [] member val PriceA:Decimal = new Decimal() with get,set [] member val PriceB:Decimal = new Decimal() with get,set [] member val PriceC:Decimal = new Decimal() with get,set [] member val OurPrice:Decimal = new Decimal() with get,set [] member val RetailPrice:Decimal = new Decimal() with get,set [] member val Cost:Decimal = new Decimal() with get,set [] member val WeightedCost:Decimal = new Decimal() with get,set [] member val VendorNormalCost:Decimal = new Decimal() with get,set