rv.data.CaptureActionResponse.StartResi
*/
class StartResi extends \Google\Protobuf\Internal\Message
{
/**
* Generated from protobuf field string event_name = 1;
*/
protected $event_name = '';
/**
* Generated from protobuf field string event_description = 2;
*/
protected $event_description = '';
/**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type string $event_name
* @type string $event_description
* }
*/
public function __construct($data = NULL) {
\GPBMetadata\ProCore::initOnce();
parent::__construct($data);
}
/**
* Generated from protobuf field string event_name = 1;
* @return string
*/
public function getEventName()
{
return $this->event_name;
}
/**
* Generated from protobuf field string event_name = 1;
* @param string $var
* @return $this
*/
public function setEventName($var)
{
GPBUtil::checkString($var, True);
$this->event_name = $var;
return $this;
}
/**
* Generated from protobuf field string event_description = 2;
* @return string
*/
public function getEventDescription()
{
return $this->event_description;
}
/**
* Generated from protobuf field string event_description = 2;
* @param string $var
* @return $this
*/
public function setEventDescription($var)
{
GPBUtil::checkString($var, True);
$this->event_description = $var;
return $this;
}
}