toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final endTime = this.endTime;
  final engine = this.engine;
  final evaluationId = this.evaluationId;
  final externalDataSources = this.externalDataSources;
  final inventoryTime = this.inventoryTime;
  final labels = this.labels;
  final name = this.name;
  final notices = this.notices;
  final resultSummary = this.resultSummary;
  final ruleResults = this.ruleResults;
  final runType = this.runType;
  final startTime = this.startTime;
  final state = this.state;
  return {
    'endTime': ?endTime,
    'engine': ?engine,
    'evaluationId': ?evaluationId,
    'externalDataSources': ?externalDataSources,
    'inventoryTime': ?inventoryTime,
    'labels': ?labels,
    'name': ?name,
    'notices': ?notices,
    'resultSummary': ?resultSummary,
    'ruleResults': ?ruleResults,
    'runType': ?runType,
    'startTime': ?startTime,
    'state': ?state,
  };
}