toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final automatedAgentConfig = this.automatedAgentConfig;
  final createTime = this.createTime;
  final displayName = this.displayName;
  final humanAgentAssistantConfig = this.humanAgentAssistantConfig;
  final humanAgentHandoffConfig = this.humanAgentHandoffConfig;
  final languageCode = this.languageCode;
  final loggingConfig = this.loggingConfig;
  final name = this.name;
  final newMessageEventNotificationConfig =
      this.newMessageEventNotificationConfig;
  final newRecognitionResultNotificationConfig =
      this.newRecognitionResultNotificationConfig;
  final notificationConfig = this.notificationConfig;
  final securitySettings = this.securitySettings;
  final sttConfig = this.sttConfig;
  final timeZone = this.timeZone;
  final ttsConfig = this.ttsConfig;
  final updateTime = this.updateTime;
  return {
    'automatedAgentConfig': ?automatedAgentConfig,
    'createTime': ?createTime,
    'displayName': ?displayName,
    'humanAgentAssistantConfig': ?humanAgentAssistantConfig,
    'humanAgentHandoffConfig': ?humanAgentHandoffConfig,
    'languageCode': ?languageCode,
    'loggingConfig': ?loggingConfig,
    'name': ?name,
    'newMessageEventNotificationConfig': ?newMessageEventNotificationConfig,
    'newRecognitionResultNotificationConfig':
        ?newRecognitionResultNotificationConfig,
    'notificationConfig': ?notificationConfig,
    'securitySettings': ?securitySettings,
    'sttConfig': ?sttConfig,
    'timeZone': ?timeZone,
    'ttsConfig': ?ttsConfig,
    'updateTime': ?updateTime,
  };
}