toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final batchModePriority = this.batchModePriority;
final config = this.config;
final createTime = this.createTime;
final endTime = this.endTime;
final error = this.error;
final fillContentGaps = this.fillContentGaps;
final inputUri = this.inputUri;
final labels = this.labels;
final mode = this.mode;
final name = this.name;
final optimization = this.optimization;
final outputUri = this.outputUri;
final startTime = this.startTime;
final state = this.state;
final templateId = this.templateId;
final ttlAfterCompletionDays = this.ttlAfterCompletionDays;
return {
'batchModePriority': ?batchModePriority,
'config': ?config,
'createTime': ?createTime,
'endTime': ?endTime,
'error': ?error,
'fillContentGaps': ?fillContentGaps,
'inputUri': ?inputUri,
'labels': ?labels,
'mode': ?mode,
'name': ?name,
'optimization': ?optimization,
'outputUri': ?outputUri,
'startTime': ?startTime,
'state': ?state,
'templateId': ?templateId,
'ttlAfterCompletionDays': ?ttlAfterCompletionDays,
};
}