toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final alertStrategy = this.alertStrategy;
final combiner = this.combiner;
final conditions = this.conditions;
final creationRecord = this.creationRecord;
final displayName = this.displayName;
final documentation = this.documentation;
final enabled = this.enabled;
final mutationRecord = this.mutationRecord;
final name = this.name;
final notificationChannels = this.notificationChannels;
final severity = this.severity;
final userLabels = this.userLabels;
final validity = this.validity;
return {
'alertStrategy': ?alertStrategy,
'combiner': ?combiner,
'conditions': ?conditions,
'creationRecord': ?creationRecord,
'displayName': ?displayName,
'documentation': ?documentation,
'enabled': ?enabled,
'mutationRecord': ?mutationRecord,
'name': ?name,
'notificationChannels': ?notificationChannels,
'severity': ?severity,
'userLabels': ?userLabels,
'validity': ?validity,
};
}