toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final authorization = this.authorization;
final createTime = this.createTime;
final dataClassification = this.dataClassification;
final description = this.description;
final displayName = this.displayName;
final etag = this.etag;
final labels = this.labels;
final metadataTemplate = this.metadataTemplate;
final name = this.name;
final transferStatus = this.transferStatus;
final uid = this.uid;
final updateTime = this.updateTime;
return {
'authorization': ?authorization,
'createTime': ?createTime,
'dataClassification': ?dataClassification,
'description': ?description,
'displayName': ?displayName,
'etag': ?etag,
'labels': ?labels,
'metadataTemplate': ?metadataTemplate,
'name': ?name,
'transferStatus': ?transferStatus,
'uid': ?uid,
'updateTime': ?updateTime,
};
}