rv.data.Preferences.Import.Image.Duration.Random */ class Random extends \Google\Protobuf\Internal\Message { /** * Generated from protobuf field double minimum_time = 1; */ protected $minimum_time = 0.0; /** * Generated from protobuf field double maximum_time = 2; */ protected $maximum_time = 0.0; /** * Constructor. * * @param array $data { * Optional. Data for populating the Message object. * * @type float $minimum_time * @type float $maximum_time * } */ public function __construct($data = NULL) { \GPBMetadata\Preferences::initOnce(); parent::__construct($data); } /** * Generated from protobuf field double minimum_time = 1; * @return float */ public function getMinimumTime() { return $this->minimum_time; } /** * Generated from protobuf field double minimum_time = 1; * @param float $var * @return $this */ public function setMinimumTime($var) { GPBUtil::checkDouble($var); $this->minimum_time = $var; return $this; } /** * Generated from protobuf field double maximum_time = 2; * @return float */ public function getMaximumTime() { return $this->maximum_time; } /** * Generated from protobuf field double maximum_time = 2; * @param float $var * @return $this */ public function setMaximumTime($var) { GPBUtil::checkDouble($var); $this->maximum_time = $var; return $this; } }