toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final annotationId = this.annotationId;
  final answerFeedback = this.answerFeedback;
  final articleSuggestion = this.articleSuggestion;
  final conversationSummarizationSuggestion =
      this.conversationSummarizationSuggestion;
  final createTime = this.createTime;
  final dialogflowInteraction = this.dialogflowInteraction;
  final endBoundary = this.endBoundary;
  final faqAnswer = this.faqAnswer;
  final smartComposeSuggestion = this.smartComposeSuggestion;
  final smartReply = this.smartReply;
  final startBoundary = this.startBoundary;
  final userInput = this.userInput;
  return {
    'annotationId': ?annotationId,
    'answerFeedback': ?answerFeedback,
    'articleSuggestion': ?articleSuggestion,
    'conversationSummarizationSuggestion':
        ?conversationSummarizationSuggestion,
    'createTime': ?createTime,
    'dialogflowInteraction': ?dialogflowInteraction,
    'endBoundary': ?endBoundary,
    'faqAnswer': ?faqAnswer,
    'smartComposeSuggestion': ?smartComposeSuggestion,
    'smartReply': ?smartReply,
    'startBoundary': ?startBoundary,
    'userInput': ?userInput,
  };
}