/* Options: Date: 2025-08-05 02:43:37 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://www.asg.com.au/RestApi //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: RestoreDataItems.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; // @Route("/recycle-bin/dataItems/batch/restore", "POST") class RestoreDataItems implements IConvertible, IPost { List? ItemIdentifications; RestoreDataItems({this.ItemIdentifications}); RestoreDataItems.fromJson(Map json) { fromMap(json); } fromMap(Map json) { ItemIdentifications = JsonConverters.fromJson(json['ItemIdentifications'],'List',context!); return this; } Map toJson() => { 'ItemIdentifications': JsonConverters.toJson(ItemIdentifications,'List',context!) }; getTypeName() => "RestoreDataItems"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'www.asg.com.au', types: { 'RestoreDataItems': TypeInfo(TypeOf.Class, create:() => RestoreDataItems()), 'List': TypeInfo(TypeOf.Class, create:() => []), 'DataItemIdentification': TypeInfo(TypeOf.Class, create:() => DataItemIdentification()), });