/* Options: Date: 2026-06-13 13:39:24 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: ProcessRefreshILEventSetRiskBucketLossBandCountsRequest.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; class ProcessRefreshILEventSetRiskBucketLossBandCountsRequest implements IReturnVoid, IConvertible, IPost { List? ilEventSetIds; ProcessRefreshILEventSetRiskBucketLossBandCountsRequest({this.ilEventSetIds}); ProcessRefreshILEventSetRiskBucketLossBandCountsRequest.fromJson(Map json) { fromMap(json); } fromMap(Map json) { ilEventSetIds = JsonConverters.fromJson(json['ilEventSetIds'],'List',context!); return this; } Map toJson() => { 'ilEventSetIds': JsonConverters.toJson(ilEventSetIds,'List',context!) }; createResponse() {} getTypeName() => "ProcessRefreshILEventSetRiskBucketLossBandCountsRequest"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'riskstoreng_dev.nephila.com', types: { 'ProcessRefreshILEventSetRiskBucketLossBandCountsRequest': TypeInfo(TypeOf.Class, create:() => ProcessRefreshILEventSetRiskBucketLossBandCountsRequest()), });