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