toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final createTime = this.createTime;
final description = this.description;
final displayName = this.displayName;
final dryRun = this.dryRun;
final duration = this.duration;
final errorMessage = this.errorMessage;
final instanceDetailsSummary = this.instanceDetailsSummary;
final instanceFilter = this.instanceFilter;
final name = this.name;
final patchConfig = this.patchConfig;
final patchDeployment = this.patchDeployment;
final percentComplete = this.percentComplete;
final rollout = this.rollout;
final state = this.state;
final updateTime = this.updateTime;
return {
'createTime': ?createTime,
'description': ?description,
'displayName': ?displayName,
'dryRun': ?dryRun,
'duration': ?duration,
'errorMessage': ?errorMessage,
'instanceDetailsSummary': ?instanceDetailsSummary,
'instanceFilter': ?instanceFilter,
'name': ?name,
'patchConfig': ?patchConfig,
'patchDeployment': ?patchDeployment,
'percentComplete': ?percentComplete,
'rollout': ?rollout,
'state': ?state,
'updateTime': ?updateTime,
};
}