rv.data.MediaThumbnail
*/
class MediaThumbnail extends \Google\Protobuf\Internal\Message
{
/**
* Generated from protobuf field int32 width = 1;
*/
protected $width = 0;
/**
* Generated from protobuf field int32 height = 2;
*/
protected $height = 0;
/**
* Generated from protobuf field bytes data = 3;
*/
protected $data = '';
/**
* Generated from protobuf field uint64 stride = 4;
*/
protected $stride = 0;
/**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type int $width
* @type int $height
* @type string $data
* @type int|string $stride
* }
*/
public function __construct($data = NULL) {
\GPBMetadata\ProCore::initOnce();
parent::__construct($data);
}
/**
* Generated from protobuf field int32 width = 1;
* @return int
*/
public function getWidth()
{
return $this->width;
}
/**
* Generated from protobuf field int32 width = 1;
* @param int $var
* @return $this
*/
public function setWidth($var)
{
GPBUtil::checkInt32($var);
$this->width = $var;
return $this;
}
/**
* Generated from protobuf field int32 height = 2;
* @return int
*/
public function getHeight()
{
return $this->height;
}
/**
* Generated from protobuf field int32 height = 2;
* @param int $var
* @return $this
*/
public function setHeight($var)
{
GPBUtil::checkInt32($var);
$this->height = $var;
return $this;
}
/**
* Generated from protobuf field bytes data = 3;
* @return string
*/
public function getData()
{
return $this->data;
}
/**
* Generated from protobuf field bytes data = 3;
* @param string $var
* @return $this
*/
public function setData($var)
{
GPBUtil::checkString($var, False);
$this->data = $var;
return $this;
}
/**
* Generated from protobuf field uint64 stride = 4;
* @return int|string
*/
public function getStride()
{
return $this->stride;
}
/**
* Generated from protobuf field uint64 stride = 4;
* @param int|string $var
* @return $this
*/
public function setStride($var)
{
GPBUtil::checkUint64($var);
$this->stride = $var;
return $this;
}
}