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