toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final advancedSettings = this.advancedSettings;
final allowAnswerFeedback = this.allowAnswerFeedback;
final currentFlow = this.currentFlow;
final currentPage = this.currentPage;
final dataStoreConnectionSignals = this.dataStoreConnectionSignals;
final diagnosticInfo = this.diagnosticInfo;
final dtmf = this.dtmf;
final intent = this.intent;
final intentDetectionConfidence = this.intentDetectionConfidence;
final languageCode = this.languageCode;
final match = this.match;
final parameters = this.parameters;
final responseMessages = this.responseMessages;
final sentimentAnalysisResult = this.sentimentAnalysisResult;
final text = this.text;
final transcript = this.transcript;
final triggerEvent = this.triggerEvent;
final triggerIntent = this.triggerIntent;
final webhookPayloads = this.webhookPayloads;
final webhookStatuses = this.webhookStatuses;
return {
'advancedSettings': ?advancedSettings,
'allowAnswerFeedback': ?allowAnswerFeedback,
'currentFlow': ?currentFlow,
'currentPage': ?currentPage,
'dataStoreConnectionSignals': ?dataStoreConnectionSignals,
'diagnosticInfo': ?diagnosticInfo,
'dtmf': ?dtmf,
'intent': ?intent,
'intentDetectionConfidence': ?intentDetectionConfidence,
'languageCode': ?languageCode,
'match': ?match,
'parameters': ?parameters,
'responseMessages': ?responseMessages,
'sentimentAnalysisResult': ?sentimentAnalysisResult,
'text': ?text,
'transcript': ?transcript,
'triggerEvent': ?triggerEvent,
'triggerIntent': ?triggerIntent,
'webhookPayloads': ?webhookPayloads,
'webhookStatuses': ?webhookStatuses,
};
}