rv.data.TriggerTransferRenderState.AutoAdvanceState
*/
class AutoAdvanceState extends \Google\Protobuf\Internal\Message
{
/**
* Generated from protobuf field bool active = 1;
*/
protected $active = false;
/**
* Generated from protobuf field float remaining_time = 2;
*/
protected $remaining_time = 0.0;
/**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type bool $active
* @type float $remaining_time
* }
*/
public function __construct($data = NULL) {
\GPBMetadata\ProCore::initOnce();
parent::__construct($data);
}
/**
* Generated from protobuf field bool active = 1;
* @return bool
*/
public function getActive()
{
return $this->active;
}
/**
* Generated from protobuf field bool active = 1;
* @param bool $var
* @return $this
*/
public function setActive($var)
{
GPBUtil::checkBool($var);
$this->active = $var;
return $this;
}
/**
* Generated from protobuf field float remaining_time = 2;
* @return float
*/
public function getRemainingTime()
{
return $this->remaining_time;
}
/**
* Generated from protobuf field float remaining_time = 2;
* @param float $var
* @return $this
*/
public function setRemainingTime($var)
{
GPBUtil::checkFloat($var);
$this->remaining_time = $var;
return $this;
}
}