/* Options: Date: 2025-08-05 02:49:16 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: DeleteRecycleBinItems.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; // @Route("/recycle-bin/batch/delete", "POST") class DeleteRecycleBinItems implements IConvertible, IPost { List? Ids; DeleteRecycleBinItems({this.Ids}); DeleteRecycleBinItems.fromJson(Map json) { fromMap(json); } fromMap(Map json) { Ids = JsonConverters.fromJson(json['Ids'],'List',context!); return this; } Map toJson() => { 'Ids': JsonConverters.toJson(Ids,'List',context!) }; getTypeName() => "DeleteRecycleBinItems"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'www.asg.com.au', types: { 'DeleteRecycleBinItems': TypeInfo(TypeOf.Class, create:() => DeleteRecycleBinItems()), });