' Options: 'Date: 2026-09-21 22:53:45 '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: StockUpdate.* '''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 StockAdditional Public Overridable Property StockID As Integer Public Overridable Property Gtin As String Public Overridable Property StockLocation As String Public Overridable Property PhysicalQuantityStockLocation As Double End Class Public Partial Class StockUpdate ''' '''Internal DB identifier ''' Public Overridable Property StockID As Integer ''' '''Global Trade Item Number : usually is the barcode of product (EAN, UPC, Gencode, etc...) ''' Public Overridable Property Gtin As String ''' '''Location of main stock or stock address ''' Public Overridable Property StockLocation As String ''' '''Quantity physically stocked at this location ''' Public Overridable Property PhysicalQuantityStockLocation As Double ''' '''Location of reserve stock (2nd stock location address) ''' Public Overridable Property ReserveStockLocation As String ''' '''Quantity physically stocked at this location ''' Public Overridable Property PhysicalQuantityReserveStockLocation As Double ''' '''Product ID ''' Public Overridable Property ProductID As String ''' '''Second product ID E.g. in case of variant ''' Public Overridable Property ProductAttributeID As String ''' '''Product reference ''' Public Overridable Property Reference As String ''' '''GTIN of variant ''' Public Overridable Property GtinAttribute As String ''' '''Product label ''' Public Overridable Property Label As String ''' '''NbSKUInPackage ''' Public Overridable Property NbSKUInPackage As Integer? ''' '''PackageReference ''' Public Overridable Property PackageReference As String ''' '''NbSKUInPackage2 ''' Public Overridable Property NbSKUInPackage2 As Integer? ''' '''PackageReference2 ''' Public Overridable Property PackageReference2 As String ''' '''Weight ''' Public Overridable Property Weight As String ''' '''List of stock Additional ''' Public Overridable Property StockAdditionals As List(Of StockAdditional) = New List(Of StockAdditional) End Class End Namespace End Namespace