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;
*/
protected $detail = '';
/**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type string[]|\Google\Protobuf\Internal\RepeatedField $stack_entries
* @type string $detail
* }
*/
public function __construct($data = NULL) {
\GPBMetadata\Src\Proto\Grpc\Testing\EchoMessages::initOnce();
parent::__construct($data);
}
/**
* 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;
}
}