toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final configurationTypeUpdate = this.configurationTypeUpdate;
  final logLevelUpdate = this.logLevelUpdate;
  final metricsLevelUpdate = this.metricsLevelUpdate;
  return {
    if (configurationTypeUpdate != null)
      'ConfigurationTypeUpdate': configurationTypeUpdate.toValue(),
    if (logLevelUpdate != null) 'LogLevelUpdate': logLevelUpdate.toValue(),
    if (metricsLevelUpdate != null)
      'MetricsLevelUpdate': metricsLevelUpdate.toValue(),
  };
}