toJson method

Map<String, dynamic> toJson()

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,
  };
}