/* Options: Date: 2025-08-05 02:41:02 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: RestoreDataItem.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; class DataItemIdentification implements IConvertible { String? Id; String? TypeName; String? ProviderName; DataItemIdentification({this.Id,this.TypeName,this.ProviderName}); DataItemIdentification.fromJson(Map json) { fromMap(json); } fromMap(Map json) { Id = json['Id']; TypeName = json['TypeName']; ProviderName = json['ProviderName']; return this; } Map toJson() => { 'Id': Id, 'TypeName': TypeName, 'ProviderName': ProviderName }; getTypeName() => "DataItemIdentification"; TypeContext? context = _ctx; } // @Route("/recycle-bin/dataItems", "PUT") class RestoreDataItem implements IConvertible, IPut { DataItemIdentification? ItemIdentification; RestoreDataItem({this.ItemIdentification}); RestoreDataItem.fromJson(Map json) { fromMap(json); } fromMap(Map json) { ItemIdentification = JsonConverters.fromJson(json['ItemIdentification'],'DataItemIdentification',context!); return this; } Map toJson() => { 'ItemIdentification': JsonConverters.toJson(ItemIdentification,'DataItemIdentification',context!) }; getTypeName() => "RestoreDataItem"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'www.asg.com.au', types: { 'DataItemIdentification': TypeInfo(TypeOf.Class, create:() => DataItemIdentification()), 'RestoreDataItem': TypeInfo(TypeOf.Class, create:() => RestoreDataItem()), });