grpc.testing.DebugInfo
*/
class DebugInfo extends \Google\Protobuf\Internal\Message
{
/**
* Generated from protobuf field repeated string stack_entries = 1;
*/
private $stack_entries;
/**
* Generated from protobuf field string detail = 2;
*/
private $detail = '';
public function __construct() {
\GPBMetadata\Src\Proto\Grpc\Testing\EchoMessages::initOnce();
parent::__construct();
}
/**
* Generated from protobuf field repeated string stack_entries = 1;
* @return \Google\Protobuf\Internal\RepeatedField
*/
public function getStackEntries()
{
return $this->stack_entries;
}
/**
* Generated from protobuf field repeated string stack_entries = 1;
* @param string[]|\Google\Protobuf\Internal\RepeatedField $var
* @return $this
*/
public function setStackEntries($var)
{
$arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::STRING);
$this->stack_entries = $arr;
return $this;
}
/**
* Generated from protobuf field string detail = 2;
* @return string
*/
public function getDetail()
{
return $this->detail;
}
/**
* Generated from protobuf field string detail = 2;
* @param string $var
* @return $this
*/
public function setDetail($var)
{
GPBUtil::checkString($var, True);
$this->detail = $var;
return $this;
}
}