toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final checkpointIntervalUpdate = this.checkpointIntervalUpdate;
  final checkpointingEnabledUpdate = this.checkpointingEnabledUpdate;
  final configurationTypeUpdate = this.configurationTypeUpdate;
  final minPauseBetweenCheckpointsUpdate =
      this.minPauseBetweenCheckpointsUpdate;
  return {
    if (checkpointIntervalUpdate != null)
      'CheckpointIntervalUpdate': checkpointIntervalUpdate,
    if (checkpointingEnabledUpdate != null)
      'CheckpointingEnabledUpdate': checkpointingEnabledUpdate,
    if (configurationTypeUpdate != null)
      'ConfigurationTypeUpdate': configurationTypeUpdate.toValue(),
    if (minPauseBetweenCheckpointsUpdate != null)
      'MinPauseBetweenCheckpointsUpdate': minPauseBetweenCheckpointsUpdate,
  };
}