/* Options: Date: 2025-08-05 02:38:51 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: GetRecyclableType.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; // @Route("/recycle-bin/items/types", "GET") class GetRecyclableType implements IConvertible, IGet { GetRecyclableType(); GetRecyclableType.fromJson(Map json) : super(); fromMap(Map json) { return this; } Map toJson() => {}; getTypeName() => "GetRecyclableType"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'www.asg.com.au', types: { 'GetRecyclableType': TypeInfo(TypeOf.Class, create:() => GetRecyclableType()), });