/* Options: Date: 2026-06-13 13:51:44 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: ProcessIngestIndustryLossRequest.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; class ProcessIngestIndustryLossRequest implements IConvertible, IPost { // @ApiMember(IsRequired=true) String? name; // @ApiMember(IsRequired=true) List? perspectiveIds = []; // @ApiMember(IsRequired=true) String? container; // @ApiMember(IsRequired=true) String? blobName; int? ilEventSetId; ProcessIngestIndustryLossRequest({this.name,this.perspectiveIds,this.container,this.blobName,this.ilEventSetId}); ProcessIngestIndustryLossRequest.fromJson(Map json) { fromMap(json); } fromMap(Map json) { name = json['name']; perspectiveIds = JsonConverters.fromJson(json['perspectiveIds'],'List',context!); container = json['container']; blobName = json['blobName']; ilEventSetId = json['ilEventSetId']; return this; } Map toJson() => { 'name': name, 'perspectiveIds': JsonConverters.toJson(perspectiveIds,'List',context!), 'container': container, 'blobName': blobName, 'ilEventSetId': ilEventSetId }; getTypeName() => "ProcessIngestIndustryLossRequest"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'riskstoreng_dev.nephila.com', types: { 'ProcessIngestIndustryLossRequest': TypeInfo(TypeOf.Class, create:() => ProcessIngestIndustryLossRequest()), });