PartitionQueryRequest constructor
PartitionQueryRequest({
- String? parent,
- StructuredQuery? structuredQuery,
- Int64? partitionCount,
- String? pageToken,
- int? pageSize,
- Timestamp? readTime,
Implementation
factory PartitionQueryRequest({
$core.String? parent,
$6.StructuredQuery? structuredQuery,
$fixnum.Int64? partitionCount,
$core.String? pageToken,
$core.int? pageSize,
$4.Timestamp? readTime,
}) {
final $result = create();
if (parent != null) {
$result.parent = parent;
}
if (structuredQuery != null) {
$result.structuredQuery = structuredQuery;
}
if (partitionCount != null) {
$result.partitionCount = partitionCount;
}
if (pageToken != null) {
$result.pageToken = pageToken;
}
if (pageSize != null) {
$result.pageSize = pageSize;
}
if (readTime != null) {
$result.readTime = readTime;
}
return $result;
}