/* Options: Date: 2026-09-21 23:10:53 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: StockDelete.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; // @Route("/StockDelete") class StockDelete implements IConvertible, IPost { /** * Internal DB identifier */ // @ApiMember(Description="Internal DB identifier", IsRequired=true) int? StockID; StockDelete({this.StockID}); StockDelete.fromJson(Map json) { fromMap(json); } fromMap(Map json) { StockID = json['StockID']; return this; } Map toJson() => { 'StockID': StockID }; getTypeName() => "StockDelete"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'clouddemo.pickeos.com', types: { 'StockDelete': TypeInfo(TypeOf.Class, create:() => StockDelete()), });