toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final issueModels = this.issueModels;
final phraseMatchers = this.phraseMatchers;
final qaConfig = this.qaConfig;
final runEntityAnnotator = this.runEntityAnnotator;
final runIntentAnnotator = this.runIntentAnnotator;
final runInterruptionAnnotator = this.runInterruptionAnnotator;
final runIssueModelAnnotator = this.runIssueModelAnnotator;
final runPhraseMatcherAnnotator = this.runPhraseMatcherAnnotator;
final runQaAnnotator = this.runQaAnnotator;
final runSentimentAnnotator = this.runSentimentAnnotator;
final runSilenceAnnotator = this.runSilenceAnnotator;
final runSummarizationAnnotator = this.runSummarizationAnnotator;
final summarizationConfig = this.summarizationConfig;
return {
'issueModels': ?issueModels,
'phraseMatchers': ?phraseMatchers,
'qaConfig': ?qaConfig,
'runEntityAnnotator': ?runEntityAnnotator,
'runIntentAnnotator': ?runIntentAnnotator,
'runInterruptionAnnotator': ?runInterruptionAnnotator,
'runIssueModelAnnotator': ?runIssueModelAnnotator,
'runPhraseMatcherAnnotator': ?runPhraseMatcherAnnotator,
'runQaAnnotator': ?runQaAnnotator,
'runSentimentAnnotator': ?runSentimentAnnotator,
'runSilenceAnnotator': ?runSilenceAnnotator,
'runSummarizationAnnotator': ?runSummarizationAnnotator,
'summarizationConfig': ?summarizationConfig,
};
}