toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final args = this.args;
final kmsKey = this.kmsKey;
final maxJobExecutionLifetime = this.maxJobExecutionLifetime;
final project = this.project;
final serviceAccount = this.serviceAccount;
return {
'args': ?args,
'kmsKey': ?kmsKey,
'maxJobExecutionLifetime': ?maxJobExecutionLifetime,
'project': ?project,
'serviceAccount': ?serviceAccount,
};
}