/* Options: Date: 2026-09-21 22:56:06 SwiftVersion: 6.0 Version: 8.52 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: http://clouddemo.pickeos.com:1337 //BaseClass: //AddModelExtensions: True //AddServiceStackTypes: True //MakePropertiesOptional: True IncludeTypes: StockGetList.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: False //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack // @Route("/StockGetList") public class StockGetList : Codable { /** * Limit to a certain amount of result (Eg. 50 result) */ // @ApiMember(Description="Limit to a certain amount of result (Eg. 50 result)") public var limit:Int? /** * Will return only stock entries containing search key withing its label, GTIN or any other attributes */ // @ApiMember(Description="Will return only stock entries containing search key withing its label, GTIN or any other attributes") public var searchKey:String? required public init(){} }