/* Options: Date: 2026-06-13 13:15:22 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://riskstoreng-dev.nephila.com/api //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetCacheStatusRequest.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; class GetCacheStatusRespone implements IConvertible { bool? linking; bool? eventSource; bool? eventSourcePerspective; bool? metaRisk; bool? eventLosses; ResponseStatus? responseStatus; GetCacheStatusRespone({this.linking,this.eventSource,this.eventSourcePerspective,this.metaRisk,this.eventLosses,this.responseStatus}); GetCacheStatusRespone.fromJson(Map json) { fromMap(json); } fromMap(Map json) { linking = json['linking']; eventSource = json['eventSource']; eventSourcePerspective = json['eventSourcePerspective']; metaRisk = json['metaRisk']; eventLosses = json['eventLosses']; responseStatus = JsonConverters.fromJson(json['responseStatus'],'ResponseStatus',context!); return this; } Map toJson() => { 'linking': linking, 'eventSource': eventSource, 'eventSourcePerspective': eventSourcePerspective, 'metaRisk': metaRisk, 'eventLosses': eventLosses, 'responseStatus': JsonConverters.toJson(responseStatus,'ResponseStatus',context!) }; getTypeName() => "GetCacheStatusRespone"; TypeContext? context = _ctx; } // @Route("/riskstore/cache/status", "GET") class GetCacheStatusRequest implements IReturn, IGet, IConvertible { GetCacheStatusRequest(); GetCacheStatusRequest.fromJson(Map json) : super(); fromMap(Map json) { return this; } Map toJson() => {}; createResponse() => GetCacheStatusRespone(); getResponseTypeName() => "GetCacheStatusRespone"; getTypeName() => "GetCacheStatusRequest"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'riskstoreng_dev.nephila.com', types: { 'GetCacheStatusRespone': TypeInfo(TypeOf.Class, create:() => GetCacheStatusRespone()), 'GetCacheStatusRequest': TypeInfo(TypeOf.Class, create:() => GetCacheStatusRequest()), });