toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final error = this.error;
  final generateSuggestionsResponse = this.generateSuggestionsResponse;
  final suggestArticlesResponse = this.suggestArticlesResponse;
  final suggestFaqAnswersResponse = this.suggestFaqAnswersResponse;
  final suggestKnowledgeAssistResponse = this.suggestKnowledgeAssistResponse;
  final suggestSmartRepliesResponse = this.suggestSmartRepliesResponse;
  return {
    'error': ?error,
    'generateSuggestionsResponse': ?generateSuggestionsResponse,
    'suggestArticlesResponse': ?suggestArticlesResponse,
    'suggestFaqAnswersResponse': ?suggestFaqAnswersResponse,
    'suggestKnowledgeAssistResponse': ?suggestKnowledgeAssistResponse,
    'suggestSmartRepliesResponse': ?suggestSmartRepliesResponse,
  };
}