/* Options: Date: 2025-08-05 02:04:06 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: GetDebugMode.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; class DebugModeProxy implements IConvertible { bool? Enabled; DebugModeProxy({this.Enabled}); DebugModeProxy.fromJson(Map json) { fromMap(json); } fromMap(Map json) { Enabled = json['Enabled']; return this; } Map toJson() => { 'Enabled': Enabled }; getTypeName() => "DebugModeProxy"; TypeContext? context = _ctx; } // @Route("/diagnostics/debug-mode", "GET") class GetDebugMode implements IReturn, IConvertible, IGet { GetDebugMode(); GetDebugMode.fromJson(Map json) : super(); fromMap(Map json) { return this; } Map toJson() => {}; createResponse() => DebugModeProxy(); getResponseTypeName() => "DebugModeProxy"; getTypeName() => "GetDebugMode"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'www.asg.com.au', types: { 'DebugModeProxy': TypeInfo(TypeOf.Class, create:() => DebugModeProxy()), 'GetDebugMode': TypeInfo(TypeOf.Class, create:() => GetDebugMode()), });