toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final agentId = this.agentId;
  final conversation = this.conversation;
  final createTime = this.createTime;
  final name = this.name;
  final normalizedScore = this.normalizedScore;
  final potentialScore = this.potentialScore;
  final qaAnswers = this.qaAnswers;
  final qaScorecardRevision = this.qaScorecardRevision;
  final qaTagResults = this.qaTagResults;
  final score = this.score;
  final scoreSources = this.scoreSources;
  return {
    'agentId': ?agentId,
    'conversation': ?conversation,
    'createTime': ?createTime,
    'name': ?name,
    'normalizedScore': ?normalizedScore,
    'potentialScore': ?potentialScore,
    'qaAnswers': ?qaAnswers,
    'qaScorecardRevision': ?qaScorecardRevision,
    'qaTagResults': ?qaTagResults,
    'score': ?score,
    'scoreSources': ?scoreSources,
  };
}