toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final clusterLocation = this.clusterLocation;
final description = this.description;
final hybridReplicationType = this.hybridReplicationType;
final labels = this.labels;
final largeVolumeConstituentCount = this.largeVolumeConstituentCount;
final peerClusterName = this.peerClusterName;
final peerIpAddresses = this.peerIpAddresses;
final peerSvmName = this.peerSvmName;
final peerVolumeName = this.peerVolumeName;
final replication = this.replication;
final replicationSchedule = this.replicationSchedule;
return {
'clusterLocation': ?clusterLocation,
'description': ?description,
'hybridReplicationType': ?hybridReplicationType,
'labels': ?labels,
'largeVolumeConstituentCount': ?largeVolumeConstituentCount,
'peerClusterName': ?peerClusterName,
'peerIpAddresses': ?peerIpAddresses,
'peerSvmName': ?peerSvmName,
'peerVolumeName': ?peerVolumeName,
'replication': ?replication,
'replicationSchedule': ?replicationSchedule,
};
}