' Options: 'Date: 2026-09-21 22:54:22 'Version: 8.52 'Tip: To override a DTO option, remove "''" prefix before updating 'BaseUrl: http://clouddemo.pickeos.com:1337 ' '''GlobalNamespace: '''MakePartial: True '''MakeVirtual: True '''MakeDataContractsExtensible: False '''AddReturnMarker: True '''AddDescriptionAsComments: True '''AddDataContractAttributes: False '''AddIndexesToDataMembers: False '''AddGeneratedCodeAttributes: False '''AddResponseStatus: False '''AddImplicitVersion: '''InitializeCollections: False '''ExportValueTypes: False 'IncludeTypes: MissionAddDetail.* '''ExcludeTypes: '''AddNamespaces: '''AddDefaultXmlNamespace: http://schemas.servicestack.net/types Imports System Imports System.IO Imports System.Collections Imports System.Collections.Generic Imports System.Runtime.Serialization Imports ServiceStack Imports ServiceStack.DataAnnotations Imports GoToLightAPI Namespace Global Namespace GoToLightAPI Public Partial Class MissionAddDetail ''' '''Mission name ''' Public Overridable Property MissionName As String ''' '''Detail reference ''' Public Overridable Property Reference As String ''' '''Detail label ''' Public Overridable Property Label As String ''' '''Quantity ''' Public Overridable Property Quantity As Double ''' '''QuantityPrepared ''' Public Overridable Property QuantityPrepared As Double ''' '''Mission info ''' Public Overridable Property MissionInfo As String ''' '''Tray key ''' Public Overridable Property Tray As String ''' '''Stock Location ''' Public Overridable Property StockLocation As String ''' '''To be used to identify with certitude a specific line in the mission result repport. ''' Public Overridable Property LineNumber As Integer ''' '''Info about article (Max 100 chars) ''' Public Overridable Property Info As String ''' '''Position of article (Max 50 chars) ''' Public Overridable Property GTIN As String ''' '''Product reference used by supplier ''' Public Overridable Property SupplierReference As String ''' '''Can be used to optimize picking. The mission will be sorted using this value ''' Public Overridable Property PickingIndex As Integer ''' '''Defines if an article is substitutable ''' Public Overridable Property Substitutable As Boolean? ''' '''Defines the new Reference of substituted article ''' Public Overridable Property SubstitutionRef As String ''' '''Unique reference of a containing package ''' Public Overridable Property PackageReference As String ''' '''Number of articles contained in the package ''' Public Overridable Property NbSKUInPackage As Integer? ''' '''Unique reference of a containing package (additional) ''' Public Overridable Property PackageReference2 As String ''' '''Number of articles contained in the package (additional) ''' Public Overridable Property NbSKUInPackage2 As Integer? ''' '''Uses GTIN to resovle StockLocation from Stock DB Table. Takes only the first stock location found in Stock DB. ''' Public Overridable Property ResolveStockLocation As Boolean? ''' '''Weight per Item in Kg ''' Public Overridable Property WeightPerItemInKg As Single? ''' '''Volume per Item in m3 ''' Public Overridable Property VolumePerItemInM3 As Single? ''' '''URL of picture ''' Public Overridable Property PictureURL As String ''' '''Mesure of the item if it is by weight or by piece ''' Public Overridable Property QuantityUnit As String ''' '''Product versions ''' Public Overridable Property Versions As List(Of String) = New List(Of String) ''' '''Use to know if product need force scan EAN or not ''' Public Overridable Property IsProductCritical As Boolean? ''' '''Mission type ''' Public Overridable Property MissionType As String End Class End Namespace End Namespace