toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final clusterLocation = this.clusterLocation;
  final createTime = this.createTime;
  final description = this.description;
  final destinationVolume = this.destinationVolume;
  final destinationVolumeParameters = this.destinationVolumeParameters;
  final healthy = this.healthy;
  final hybridPeeringDetails = this.hybridPeeringDetails;
  final hybridReplicationType = this.hybridReplicationType;
  final hybridReplicationUserCommands = this.hybridReplicationUserCommands;
  final labels = this.labels;
  final mirrorState = this.mirrorState;
  final name = this.name;
  final replicationSchedule = this.replicationSchedule;
  final role = this.role;
  final sourceVolume = this.sourceVolume;
  final state = this.state;
  final stateDetails = this.stateDetails;
  final transferStats = this.transferStats;
  return {
    'clusterLocation': ?clusterLocation,
    'createTime': ?createTime,
    'description': ?description,
    'destinationVolume': ?destinationVolume,
    'destinationVolumeParameters': ?destinationVolumeParameters,
    'healthy': ?healthy,
    'hybridPeeringDetails': ?hybridPeeringDetails,
    'hybridReplicationType': ?hybridReplicationType,
    'hybridReplicationUserCommands': ?hybridReplicationUserCommands,
    'labels': ?labels,
    'mirrorState': ?mirrorState,
    'name': ?name,
    'replicationSchedule': ?replicationSchedule,
    'role': ?role,
    'sourceVolume': ?sourceVolume,
    'state': ?state,
    'stateDetails': ?stateDetails,
    'transferStats': ?transferStats,
  };
}