toJson method
Implementation
Map<String, Object?> toJson() {
var ruleUpdateErrors = this.ruleUpdateErrors;
var updateErrors = this.updateErrors;
var workflowId = this.workflowId;
final json = <String, Object?>{};
json[r'ruleUpdateErrors'] = ruleUpdateErrors;
json[r'updateErrors'] = updateErrors;
json[r'workflowId'] = workflowId.toJson();
return json;
}