/* Options: Date: 2026-06-13 14:56:20 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: ProcessCacheEventSourcePerspectiveRequest.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; abstract class CacheRequest { String? requestId; CacheRequest({this.requestId}); CacheRequest.fromJson(Map json) { fromMap(json); } fromMap(Map json) { requestId = json['requestId']; return this; } Map toJson() => { 'requestId': requestId }; getTypeName() => "CacheRequest"; TypeContext? context = _ctx; } class ProcessCacheEventSourcePerspectiveRequest extends CacheRequest implements IConvertible, IPost { ProcessCacheEventSourcePerspectiveRequest(); ProcessCacheEventSourcePerspectiveRequest.fromJson(Map json) : super.fromJson(json); fromMap(Map json) { super.fromMap(json); return this; } Map toJson() => super.toJson(); getTypeName() => "ProcessCacheEventSourcePerspectiveRequest"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'riskstoreng_dev.nephila.com', types: { 'CacheRequest': TypeInfo(TypeOf.AbstractClass), 'ProcessCacheEventSourcePerspectiveRequest': TypeInfo(TypeOf.Class, create:() => ProcessCacheEventSourcePerspectiveRequest()), });