/* Options: Date: 2025-08-05 02:40:43 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: GetRecycleBinCount.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; abstract class IRecycleBinItemFilter { String? TypeName; String? SearchText; } class GetRecycleBinCountProxy implements IConvertible { int? TotalCount; GetRecycleBinCountProxy({this.TotalCount}); GetRecycleBinCountProxy.fromJson(Map json) { fromMap(json); } fromMap(Map json) { TotalCount = json['TotalCount']; return this; } Map toJson() => { 'TotalCount': TotalCount }; getTypeName() => "GetRecycleBinCountProxy"; TypeContext? context = _ctx; } // @Route("/recycle-bin/items/count", "GET") class GetRecycleBinCount implements IReturn, IRecycleBinItemFilter, IConvertible, IGet { String? TypeName; String? SearchText; GetRecycleBinCount({this.TypeName,this.SearchText}); GetRecycleBinCount.fromJson(Map json) { fromMap(json); } fromMap(Map json) { TypeName = json['TypeName']; SearchText = json['SearchText']; return this; } Map toJson() => { 'TypeName': TypeName, 'SearchText': SearchText }; createResponse() => GetRecycleBinCountProxy(); getResponseTypeName() => "GetRecycleBinCountProxy"; getTypeName() => "GetRecycleBinCount"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'www.asg.com.au', types: { 'IRecycleBinItemFilter': TypeInfo(TypeOf.Interface), 'GetRecycleBinCountProxy': TypeInfo(TypeOf.Class, create:() => GetRecycleBinCountProxy()), 'GetRecycleBinCount': TypeInfo(TypeOf.Class, create:() => GetRecycleBinCount()), });