toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final actions = this.actions;
final createTime = this.createTime;
final displayName = this.displayName;
final errors = this.errors;
final inspectTemplates = this.inspectTemplates;
final lastRunTime = this.lastRunTime;
final name = this.name;
final orgConfig = this.orgConfig;
final otherCloudStartingLocation = this.otherCloudStartingLocation;
final processingLocation = this.processingLocation;
final status = this.status;
final targets = this.targets;
final updateTime = this.updateTime;
return {
'actions': ?actions,
'createTime': ?createTime,
'displayName': ?displayName,
'errors': ?errors,
'inspectTemplates': ?inspectTemplates,
'lastRunTime': ?lastRunTime,
'name': ?name,
'orgConfig': ?orgConfig,
'otherCloudStartingLocation': ?otherCloudStartingLocation,
'processingLocation': ?processingLocation,
'status': ?status,
'targets': ?targets,
'updateTime': ?updateTime,
};
}