rv.data.TimedPlayback.Timing.Internal */ class Internal extends \Google\Protobuf\Internal\Message { /** * Generated from protobuf field double duration = 1; */ protected $duration = 0.0; /** * Generated from protobuf field bool should_loop = 2; */ protected $should_loop = false; /** * Constructor. * * @param array $data { * Optional. Data for populating the Message object. * * @type float $duration * @type bool $should_loop * } */ 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; } /** * Generated from protobuf field bool should_loop = 2; * @return bool */ public function getShouldLoop() { return $this->should_loop; } /** * Generated from protobuf field bool should_loop = 2; * @param bool $var * @return $this */ public function setShouldLoop($var) { GPBUtil::checkBool($var); $this->should_loop = $var; return $this; } }