toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final conditionAbsent = this.conditionAbsent;
final conditionMatchedLog = this.conditionMatchedLog;
final conditionMonitoringQueryLanguage =
this.conditionMonitoringQueryLanguage;
final conditionPrometheusQueryLanguage =
this.conditionPrometheusQueryLanguage;
final conditionSql = this.conditionSql;
final conditionThreshold = this.conditionThreshold;
final displayName = this.displayName;
final name = this.name;
return {
'conditionAbsent': ?conditionAbsent,
'conditionMatchedLog': ?conditionMatchedLog,
'conditionMonitoringQueryLanguage': ?conditionMonitoringQueryLanguage,
'conditionPrometheusQueryLanguage': ?conditionPrometheusQueryLanguage,
'conditionSql': ?conditionSql,
'conditionThreshold': ?conditionThreshold,
'displayName': ?displayName,
'name': ?name,
};
}