/* Options: Date: 2026-09-21 22:55:10 Version: 8.52 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: http://clouddemo.pickeos.com:1337 //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: StockGetList.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; // @Route("/StockGetList") class StockGetList implements IConvertible, IPost { /** * Limit to a certain amount of result (Eg. 50 result) */ // @ApiMember(Description="Limit to a certain amount of result (Eg. 50 result)") int? Limit; /** * 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") String? SearchKey; StockGetList({this.Limit,this.SearchKey}); StockGetList.fromJson(Map json) { fromMap(json); } fromMap(Map json) { Limit = json['Limit']; SearchKey = json['SearchKey']; return this; } Map toJson() => { 'Limit': Limit, 'SearchKey': SearchKey }; getTypeName() => "StockGetList"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'clouddemo.pickeos.com', types: { 'StockGetList': TypeInfo(TypeOf.Class, create:() => StockGetList()), });