' Options: 'Date: 2026-09-21 22:54:08 '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: MissionUpdate.* '''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 MissionUpdate ''' '''Mission name ''' Public Overridable Property Name As String ''' '''Mission info ''' Public Overridable Property Info As String ''' '''Delete automatically when completed ''' Public Overridable Property DeleteWhenCompleted As Boolean? ''' '''Mission owner ''' Public Overridable Property Owner As String ''' '''Mission finder key ''' Public Overridable Property FinderKey As String ''' '''Defines the mission type. Value can be: E = Entrée/Réapro/Restock, S = Sortie/Picking/Prépa commande or, I = Inventaire/Inventory ''' Public Overridable Property Type As String ''' '''Mission trolley ''' Public Overridable Property Trolley As String ''' '''Reference of the target printer ''' Public Overridable Property Printer As String ''' '''Defines if the mission has been cancelled ''' Public Overridable Property Cancelled As Boolean? ''' '''Defines if the mission has been blocked ''' Public Overridable Property Blocked As Boolean? ''' '''Carrier ''' Public Overridable Property Carrier As String ''' '''BatchId ''' Public Overridable Property BatchId As String End Class End Namespace End Namespace