toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final description = this.description;
final shareName = this.shareName;
final storagePool = this.storagePool;
final tieringPolicy = this.tieringPolicy;
final volumeId = this.volumeId;
return {
'description': ?description,
'shareName': ?shareName,
'storagePool': ?storagePool,
'tieringPolicy': ?tieringPolicy,
'volumeId': ?volumeId,
};
}