(* Options: Date: 2024-11-13 01:18:16 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: ScanForImportRequest.* //ExcludeTypes: //InitializeCollections: True //AddNamespaces: *) namespace AIM 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 ExceptionInfo() = [] member val Barcode:String = null with get,set [] member val Description:String = null with get,set [] member val Base64Image:String = null with get,set [] member val Category:Int32 = new Int32() with get,set [] member val SubCategory:Nullable = new Nullable() with get,set [] [] type ScanItem() = [] member val SkuPk:Nullable = new Nullable() with get,set [] member val SasPk:Nullable = new Nullable() with get,set [] member val Sku:String = null with get,set [] member val Serial:String = null with get,set [] member val Quantity:Decimal = new Decimal() with get,set [] member val ExceptionInfo:ExceptionInfo = null with get,set [] [] type ScanErrorItem() = [] member val SkuPk:Nullable = new Nullable() with get,set [] member val SasPk:Nullable = new Nullable() with get,set [] member val Sku:String = null with get,set [] member val Serial:String = null with get,set [] member val Quantity:Decimal = new Decimal() with get,set [] member val ExceptionInfo:ExceptionInfo = null with get,set [] member val ErrorMessage:String = null with get,set [] type IScanItem = abstract SkuPk:Nullable with get,set abstract SasPk:Nullable with get,set abstract Sku:String with get,set abstract Serial:String with get,set abstract Quantity:Decimal with get,set abstract ExceptionInfo:ExceptionInfo with get,set [] [] type BaseResponse() = /// /// /// [] [] member val Status:BaseResponseResult = null with get,set [] [] type ScanForImportResponse() = inherit BaseResponse() [] member val ErrorItems:ResizeArray = new ResizeArray() with get,set /// ///ScanForImportRequires active-e Inventory Service /// [] [] [] type ScanForImportRequest() = inherit BaseSecureRequest() interface IReturn [] member val Description:String = null with get,set [] member val Items:ResizeArray = new ResizeArray() with get,set [] member val ReceiveInventoryMode:Nullable = new Nullable() with get,set [] member val AppendMode:Nullable = new Nullable() with get,set