rv.data.TestPatternRequest.GetThumbnail
*/
class GetThumbnail extends \Google\Protobuf\Internal\Message
{
/**
* Generated from protobuf field .rv.data.TestPatternDefinition pattern = 1;
*/
protected $pattern = null;
/**
* Generated from protobuf field int32 width = 2;
*/
protected $width = 0;
/**
* Generated from protobuf field int32 height = 3;
*/
protected $height = 0;
/**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type \Rv\Data\TestPatternDefinition $pattern
* @type int $width
* @type int $height
* }
*/
public function __construct($data = NULL) {
\GPBMetadata\ProCoreTestPatterns::initOnce();
parent::__construct($data);
}
/**
* Generated from protobuf field .rv.data.TestPatternDefinition pattern = 1;
* @return \Rv\Data\TestPatternDefinition|null
*/
public function getPattern()
{
return $this->pattern;
}
public function hasPattern()
{
return isset($this->pattern);
}
public function clearPattern()
{
unset($this->pattern);
}
/**
* Generated from protobuf field .rv.data.TestPatternDefinition pattern = 1;
* @param \Rv\Data\TestPatternDefinition $var
* @return $this
*/
public function setPattern($var)
{
GPBUtil::checkMessage($var, \Rv\Data\TestPatternDefinition::class);
$this->pattern = $var;
return $this;
}
/**
* Generated from protobuf field int32 width = 2;
* @return int
*/
public function getWidth()
{
return $this->width;
}
/**
* Generated from protobuf field int32 width = 2;
* @param int $var
* @return $this
*/
public function setWidth($var)
{
GPBUtil::checkInt32($var);
$this->width = $var;
return $this;
}
/**
* Generated from protobuf field int32 height = 3;
* @return int
*/
public function getHeight()
{
return $this->height;
}
/**
* Generated from protobuf field int32 height = 3;
* @param int $var
* @return $this
*/
public function setHeight($var)
{
GPBUtil::checkInt32($var);
$this->height = $var;
return $this;
}
}