rv.data.TestPatternDefinition.IntProperty */ class IntProperty extends \Google\Protobuf\Internal\Message { /** * Generated from protobuf field int32 value = 1; */ protected $value = 0; /** * Generated from protobuf field int32 min = 2; */ protected $min = 0; /** * Generated from protobuf field int32 max = 3; */ protected $max = 0; /** * Generated from protobuf field string units = 5; */ protected $units = ''; /** * Constructor. * * @param array $data { * Optional. Data for populating the Message object. * * @type int $value * @type int $min * @type int $max * @type string $units * } */ public function __construct($data = NULL) { \GPBMetadata\TestPattern::initOnce(); parent::__construct($data); } /** * Generated from protobuf field int32 value = 1; * @return int */ public function getValue() { return $this->value; } /** * Generated from protobuf field int32 value = 1; * @param int $var * @return $this */ public function setValue($var) { GPBUtil::checkInt32($var); $this->value = $var; return $this; } /** * Generated from protobuf field int32 min = 2; * @return int */ public function getMin() { return $this->min; } /** * Generated from protobuf field int32 min = 2; * @param int $var * @return $this */ public function setMin($var) { GPBUtil::checkInt32($var); $this->min = $var; return $this; } /** * Generated from protobuf field int32 max = 3; * @return int */ public function getMax() { return $this->max; } /** * Generated from protobuf field int32 max = 3; * @param int $var * @return $this */ public function setMax($var) { GPBUtil::checkInt32($var); $this->max = $var; return $this; } /** * Generated from protobuf field string units = 5; * @return string */ public function getUnits() { return $this->units; } /** * Generated from protobuf field string units = 5; * @param string $var * @return $this */ public function setUnits($var) { GPBUtil::checkString($var, True); $this->units = $var; return $this; } }