toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final capacityGb = this.capacityGb;
final description = this.description;
final filesystem = this.filesystem;
final lustre = this.lustre;
final perUnitStorageThroughput = this.perUnitStorageThroughput;
return {
'capacityGb': ?capacityGb,
'description': ?description,
'filesystem': ?filesystem,
'lustre': ?lustre,
'perUnitStorageThroughput': ?perUnitStorageThroughput,
};
}