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