rv.data.TimedPlayback.Update.Duration
*/
class Duration extends \Google\Protobuf\Internal\Message
{
/**
* Generated from protobuf field double duration = 1;
*/
protected $duration = 0.0;
/**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type float $duration
* }
*/
public function __construct($data = NULL) {
\GPBMetadata\TimedPlayback::initOnce();
parent::__construct($data);
}
/**
* Generated from protobuf field double duration = 1;
* @return float
*/
public function getDuration()
{
return $this->duration;
}
/**
* Generated from protobuf field double duration = 1;
* @param float $var
* @return $this
*/
public function setDuration($var)
{
GPBUtil::checkDouble($var);
$this->duration = $var;
return $this;
}
}