/* Options: Date: 2026-06-13 13:40:23 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: GetExpectedLossLastModifiedDateRequest.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; class GetExpectedLossLastModifiedDateResponse implements IConvertible { DateTime? lastModifiedUtcDate; ResponseStatus? responseStatus; GetExpectedLossLastModifiedDateResponse({this.lastModifiedUtcDate,this.responseStatus}); GetExpectedLossLastModifiedDateResponse.fromJson(Map json) { fromMap(json); } fromMap(Map json) { lastModifiedUtcDate = JsonConverters.fromJson(json['lastModifiedUtcDate'],'DateTime',context!); responseStatus = JsonConverters.fromJson(json['responseStatus'],'ResponseStatus',context!); return this; } Map toJson() => { 'lastModifiedUtcDate': JsonConverters.toJson(lastModifiedUtcDate,'DateTime',context!), 'responseStatus': JsonConverters.toJson(responseStatus,'ResponseStatus',context!) }; getTypeName() => "GetExpectedLossLastModifiedDateResponse"; TypeContext? context = _ctx; } // @Route("/riskstore/eventset/last-modified-date", "GET") class GetExpectedLossLastModifiedDateRequest implements IReturn, IGet, IConvertible { /** * The source deal system (IGN) to get the date for */ // @ApiMember(DataType="string", Description="The source deal system (IGN) to get the date for", IsRequired=true) String? sourceDealSystem; GetExpectedLossLastModifiedDateRequest({this.sourceDealSystem}); GetExpectedLossLastModifiedDateRequest.fromJson(Map json) { fromMap(json); } fromMap(Map json) { sourceDealSystem = json['sourceDealSystem']; return this; } Map toJson() => { 'sourceDealSystem': sourceDealSystem }; createResponse() => GetExpectedLossLastModifiedDateResponse(); getResponseTypeName() => "GetExpectedLossLastModifiedDateResponse"; getTypeName() => "GetExpectedLossLastModifiedDateRequest"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'riskstoreng_dev.nephila.com', types: { 'GetExpectedLossLastModifiedDateResponse': TypeInfo(TypeOf.Class, create:() => GetExpectedLossLastModifiedDateResponse()), 'GetExpectedLossLastModifiedDateRequest': TypeInfo(TypeOf.Class, create:() => GetExpectedLossLastModifiedDateRequest()), });