/* Options: Date: 2026-09-21 22:55:17 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: GetPositions.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; // @Route("/GetPositions/{Key}") class GetPositions implements IConvertible, IPost { /** * Key identifying one or several locations */ // @ApiMember(Description="Key identifying one or several locations", IsRequired=true) String? Key; /** * Optional: name of the stockroom where the position(s) is (are) located */ // @ApiMember(Description="Optional: name of the stockroom where the position(s) is (are) located") String? StockroomName; GetPositions({this.Key,this.StockroomName}); GetPositions.fromJson(Map json) { fromMap(json); } fromMap(Map json) { Key = json['Key']; StockroomName = json['StockroomName']; return this; } Map toJson() => { 'Key': Key, 'StockroomName': StockroomName }; getTypeName() => "GetPositions"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'clouddemo.pickeos.com', types: { 'GetPositions': TypeInfo(TypeOf.Class, create:() => GetPositions()), });