grpc.testing.RequestResultCount
*/
class RequestResultCount extends \Google\Protobuf\Internal\Message
{
/**
* Generated from protobuf field int32 status_code = 1;
*/
private $status_code = 0;
/**
* Generated from protobuf field int64 count = 2;
*/
private $count = 0;
public function __construct() {
\GPBMetadata\Src\Proto\Grpc\Testing\Stats::initOnce();
parent::__construct();
}
/**
* 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;
}
}