rv.data.Layer.Blending.Matte.Alpha
*/
class Alpha extends \Google\Protobuf\Internal\Message
{
/**
* Generated from protobuf field bool inverted = 1;
*/
protected $inverted = false;
/**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type bool $inverted
* }
*/
public function __construct($data = NULL) {
\GPBMetadata\Layers::initOnce();
parent::__construct($data);
}
/**
* Generated from protobuf field bool inverted = 1;
* @return bool
*/
public function getInverted()
{
return $this->inverted;
}
/**
* Generated from protobuf field bool inverted = 1;
* @param bool $var
* @return $this
*/
public function setInverted($var)
{
GPBUtil::checkBool($var);
$this->inverted = $var;
return $this;
}
}