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