grpc.testing.RequestResultCount
*/
class RequestResultCount extends \Google\Protobuf\Internal\Message
{
/**
* Generated from protobuf field int32 status_code = 1;
*/
protected $status_code = 0;
/**
* Generated from protobuf field int64 count = 2;
*/
protected $count = 0;
/**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type int $status_code
* @type int|string $count
* }
*/
public function __construct($data = NULL) {
\GPBMetadata\Src\Proto\Grpc\Testing\Stats::initOnce();
parent::__construct($data);
}
/**
* Generated from protobuf field int32 status_code = 1;
* @return int
*/
public function getStatusCode()
{
return $this->status_code;
}
/**
* Generated from protobuf field int32 status_code = 1;
* @param int $var
* @return $this
*/
public function setStatusCode($var)
{
GPBUtil::checkInt32($var);
$this->status_code = $var;
return $this;
}
/**
* Generated from protobuf field int64 count = 2;
* @return int|string
*/
public function getCount()
{
return $this->count;
}
/**
* Generated from protobuf field int64 count = 2;
* @param int|string $var
* @return $this
*/
public function setCount($var)
{
GPBUtil::checkInt64($var);
$this->count = $var;
return $this;
}
}