toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final createTime = this.createTime;
final displayName = this.displayName;
final jobCount = this.jobCount;
final lastUpdateTime = this.lastUpdateTime;
final name = this.name;
final pipelineSources = this.pipelineSources;
final scheduleInfo = this.scheduleInfo;
final schedulerServiceAccountEmail = this.schedulerServiceAccountEmail;
final state = this.state;
final type = this.type;
final workload = this.workload;
return {
'createTime': ?createTime,
'displayName': ?displayName,
'jobCount': ?jobCount,
'lastUpdateTime': ?lastUpdateTime,
'name': ?name,
'pipelineSources': ?pipelineSources,
'scheduleInfo': ?scheduleInfo,
'schedulerServiceAccountEmail': ?schedulerServiceAccountEmail,
'state': ?state,
'type': ?type,
'workload': ?workload,
};
}