toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final annotations = this.annotations;
final entities = this.entities;
final intents = this.intents;
final issueModelResult = this.issueModelResult;
final phraseMatchers = this.phraseMatchers;
final qaScorecardResults = this.qaScorecardResults;
final sentiments = this.sentiments;
final silence = this.silence;
return {
'annotations': ?annotations,
'entities': ?entities,
'intents': ?intents,
'issueModelResult': ?issueModelResult,
'phraseMatchers': ?phraseMatchers,
'qaScorecardResults': ?qaScorecardResults,
'sentiments': ?sentiments,
'silence': ?silence,
};
}