DeleteShardSnapshotRequest constructor

DeleteShardSnapshotRequest({
  1. String? collectionName,
  2. int? shardId,
  3. String? snapshotName,
})

Implementation

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