grpc.testing.ResponseParams
*/
class ResponseParams extends \Google\Protobuf\Internal\Message
{
/**
* Generated from protobuf field int64 request_deadline = 1;
*/
protected $request_deadline = 0;
/**
* Generated from protobuf field string host = 2;
*/
protected $host = '';
/**
* Generated from protobuf field string peer = 3;
*/
protected $peer = '';
/**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type int|string $request_deadline
* @type string $host
* @type string $peer
* }
*/
public function __construct($data = NULL) {
\GPBMetadata\Src\Proto\Grpc\Testing\EchoMessages::initOnce();
parent::__construct($data);
}
/**
* Generated from protobuf field int64 request_deadline = 1;
* @return int|string
*/
public function getRequestDeadline()
{
return $this->request_deadline;
}
/**
* Generated from protobuf field int64 request_deadline = 1;
* @param int|string $var
* @return $this
*/
public function setRequestDeadline($var)
{
GPBUtil::checkInt64($var);
$this->request_deadline = $var;
return $this;
}
/**
* Generated from protobuf field string host = 2;
* @return string
*/
public function getHost()
{
return $this->host;
}
/**
* Generated from protobuf field string host = 2;
* @param string $var
* @return $this
*/
public function setHost($var)
{
GPBUtil::checkString($var, True);
$this->host = $var;
return $this;
}
/**
* Generated from protobuf field string peer = 3;
* @return string
*/
public function getPeer()
{
return $this->peer;
}
/**
* Generated from protobuf field string peer = 3;
* @param string $var
* @return $this
*/
public function setPeer($var)
{
GPBUtil::checkString($var, True);
$this->peer = $var;
return $this;
}
}