UpdateShardCutoffPointRequest constructor
UpdateShardCutoffPointRequest({
- String? collectionName,
- int? shardId,
- 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;
}