QueryBatchPointsInternal constructor
QueryBatchPointsInternal({
- String? collectionName,
- Iterable<
QueryShardPoints> ? queryPoints, - int? shardId,
- Int64? timeout,
Implementation
factory QueryBatchPointsInternal({
$core.String? collectionName,
$core.Iterable<QueryShardPoints>? queryPoints,
$core.int? shardId,
$fixnum.Int64? timeout,
}) {
final $result = create();
if (collectionName != null) {
$result.collectionName = collectionName;
}
if (queryPoints != null) {
$result.queryPoints.addAll(queryPoints);
}
if (shardId != null) {
$result.shardId = shardId;
}
if (timeout != null) {
$result.timeout = timeout;
}
return $result;
}