toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final bucket = this.bucket;
final clientVersion = this.clientVersion;
final collectionDays = this.collectionDays;
final createTime = this.createTime;
final description = this.description;
final displayName = this.displayName;
final eulaUri = this.eulaUri;
final expectedAssetCount = this.expectedAssetCount;
final guestOsScan = this.guestOsScan;
final labels = this.labels;
final name = this.name;
final serviceAccount = this.serviceAccount;
final state = this.state;
final updateTime = this.updateTime;
final vsphereScan = this.vsphereScan;
return {
'bucket': ?bucket,
'clientVersion': ?clientVersion,
'collectionDays': ?collectionDays,
'createTime': ?createTime,
'description': ?description,
'displayName': ?displayName,
'eulaUri': ?eulaUri,
'expectedAssetCount': ?expectedAssetCount,
'guestOsScan': ?guestOsScan,
'labels': ?labels,
'name': ?name,
'serviceAccount': ?serviceAccount,
'state': ?state,
'updateTime': ?updateTime,
'vsphereScan': ?vsphereScan,
};
}