toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final createTime = this.createTime;
final description = this.description;
final displayName = this.displayName;
final executionTemplate = this.executionTemplate;
final jobUri = this.jobUri;
final name = this.name;
final outputNotebookFile = this.outputNotebookFile;
final state = this.state;
final updateTime = this.updateTime;
return {
'createTime': ?createTime,
'description': ?description,
'displayName': ?displayName,
'executionTemplate': ?executionTemplate,
'jobUri': ?jobUri,
'name': ?name,
'outputNotebookFile': ?outputNotebookFile,
'state': ?state,
'updateTime': ?updateTime,
};
}