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