toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final requestId = this.requestId;
final totalStorageSizeGb = this.totalStorageSizeGb;
final totalVmStorageSizeGb = this.totalVmStorageSizeGb;
return {
'requestId': ?requestId,
'totalStorageSizeGb': ?totalStorageSizeGb,
'totalVmStorageSizeGb': ?totalVmStorageSizeGb,
};
}