UpdateShardCutoffPointRequest constructor

UpdateShardCutoffPointRequest({
  1. String? collectionName,
  2. int? shardId,
  3. RecoveryPoint? cutoff,
})

Implementation

factory UpdateShardCutoffPointRequest({
  $core.String? collectionName,
  $core.int? shardId,
  RecoveryPoint? cutoff,
}) {
  final $result = create();
  if (collectionName != null) {
    $result.collectionName = collectionName;
  }
  if (shardId != null) {
    $result.shardId = shardId;
  }
  if (cutoff != null) {
    $result.cutoff = cutoff;
  }
  return $result;
}