' Options: 'Date: 2026-09-21 23:50:15 '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: StockCreate.* '''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 StockCreate ''' '''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 End Class End Namespace End Namespace