toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final accessPoints = this.accessPoints;
final capacityGib = this.capacityGib;
final createTime = this.createTime;
final daosVersion = this.daosVersion;
final deploymentType = this.deploymentType;
final description = this.description;
final directoryStripeLevel = this.directoryStripeLevel;
final effectiveReservedIpRange = this.effectiveReservedIpRange;
final fileStripeLevel = this.fileStripeLevel;
final labels = this.labels;
final name = this.name;
final network = this.network;
final reservedIpRange = this.reservedIpRange;
final state = this.state;
final updateTime = this.updateTime;
return {
'accessPoints': ?accessPoints,
'capacityGib': ?capacityGib,
'createTime': ?createTime,
'daosVersion': ?daosVersion,
'deploymentType': ?deploymentType,
'description': ?description,
'directoryStripeLevel': ?directoryStripeLevel,
'effectiveReservedIpRange': ?effectiveReservedIpRange,
'fileStripeLevel': ?fileStripeLevel,
'labels': ?labels,
'name': ?name,
'network': ?network,
'reservedIpRange': ?reservedIpRange,
'state': ?state,
'updateTime': ?updateTime,
};
}