-
Notifications
You must be signed in to change notification settings - Fork 461
Expand file tree
/
Copy pathFinalizeWriteStreamResponse.php
More file actions
67 lines (58 loc) · 1.65 KB
/
FinalizeWriteStreamResponse.php
File metadata and controls
67 lines (58 loc) · 1.65 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<?php
# Generated by the protocol buffer compiler. DO NOT EDIT!
# source: google/cloud/bigquery/storage/v1/storage.proto
namespace Google\Cloud\BigQuery\Storage\V1;
use Google\Protobuf\Internal\GPBType;
use Google\Protobuf\Internal\GPBUtil;
use Google\Protobuf\RepeatedField;
/**
* Response message for `FinalizeWriteStream`.
*
* Generated from protobuf message <code>google.cloud.bigquery.storage.v1.FinalizeWriteStreamResponse</code>
*/
class FinalizeWriteStreamResponse extends \Google\Protobuf\Internal\Message
{
/**
* Number of rows in the finalized stream.
*
* Generated from protobuf field <code>int64 row_count = 1;</code>
*/
protected $row_count = 0;
/**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type int|string $row_count
* Number of rows in the finalized stream.
* }
*/
public function __construct($data = NULL) {
\GPBMetadata\Google\Cloud\Bigquery\Storage\V1\Storage::initOnce();
parent::__construct($data);
}
/**
* Number of rows in the finalized stream.
*
* Generated from protobuf field <code>int64 row_count = 1;</code>
* @return int|string
*/
public function getRowCount()
{
return $this->row_count;
}
/**
* Number of rows in the finalized stream.
*
* Generated from protobuf field <code>int64 row_count = 1;</code>
* @param int|string $var
* @return $this
*/
public function setRowCount($var)
{
GPBUtil::checkInt64($var);
$this->row_count = $var;
return $this;
}
}