toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final assetStatus = this.assetStatus;
final createTime = this.createTime;
final description = this.description;
final discoverySpec = this.discoverySpec;
final displayName = this.displayName;
final labels = this.labels;
final name = this.name;
final resourceSpec = this.resourceSpec;
final state = this.state;
final type = this.type;
final uid = this.uid;
final updateTime = this.updateTime;
return {
'assetStatus': ?assetStatus,
'createTime': ?createTime,
'description': ?description,
'discoverySpec': ?discoverySpec,
'displayName': ?displayName,
'labels': ?labels,
'name': ?name,
'resourceSpec': ?resourceSpec,
'state': ?state,
'type': ?type,
'uid': ?uid,
'updateTime': ?updateTime,
};
}