(* Options: Date: 2025-08-03 11:27:21 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: EditInventoryRequest.* //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 /// ///The OAuthToken token return by AeServices30 /// [] [] member val OAuthToken:String = null with get,set /// ///The Device ID of the Mobile Device. Not used for non-mobile devices. /// [] [] member val DeviceId:String = null with get,set /// ///An identifier for your integration /// [] [] member val AppId:String = null with get,set [] [] type BaseSecureRequest() = inherit BaseRequest() /// ///The Login Token return by the Security API. Required for secured calls. /// [] [] member val Token:String = null with get,set [] [] type BaseResponse() = /// /// /// [] [] member val Status:BaseResponseResult = null with get,set [] [] type EditInventoryResponse() = inherit BaseResponse() /// ///EditInventoryRequires active-e Inventory Service /// [] [] [] type EditInventoryRequest() = inherit BaseSecureRequest() interface IReturn [] member val SaqPk:Nullable = new Nullable() with get,set [] member val SasPk:Nullable = new Nullable() with get,set [] member val Description:String = null with get,set [] member val OurPrice:Nullable = new Nullable() with get,set [] member val RetailPrice: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 MinPrice:Nullable = new Nullable() with get,set [] member val ActiveEPrice:Nullable = new Nullable() with get,set [] member val Locator:String = null with get,set [] member val UpdateAllLocations:Boolean = new Boolean() with get,set /// ///List of Barcodes. If barcodes are sent, they will overwrite existing barcodes. /// [] [] member val Barcodes:ResizeArray = new ResizeArray() with get,set [] member val NewComputerQuantity:Nullable = new Nullable() with get,set