toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final createTime = this.createTime;
final dagTimeout = this.dagTimeout;
final encryptionConfig = this.encryptionConfig;
final id = this.id;
final jobs = this.jobs;
final labels = this.labels;
final name = this.name;
final parameters = this.parameters;
final placement = this.placement;
final updateTime = this.updateTime;
final version = this.version;
return {
'createTime': ?createTime,
'dagTimeout': ?dagTimeout,
'encryptionConfig': ?encryptionConfig,
'id': ?id,
'jobs': ?jobs,
'labels': ?labels,
'name': ?name,
'parameters': ?parameters,
'placement': ?placement,
'updateTime': ?updateTime,
'version': ?version,
};
}