grpc.testing.ResponseParams
 */
class ResponseParams extends \Google\Protobuf\Internal\Message
{
    /**
     * Generated from protobuf field int64 request_deadline = 1;
     */
    private $request_deadline = 0;
    /**
     * Generated from protobuf field string host = 2;
     */
    private $host = '';
    /**
     * Generated from protobuf field string peer = 3;
     */
    private $peer = '';
    public function __construct() {
        \GPBMetadata\Src\Proto\Grpc\Testing\EchoMessages::initOnce();
        parent::__construct();
    }
    /**
     * 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;
    }
}