rv.data.API_v1_Looks_Request.CreateLook
*/
class CreateLook extends \Google\Protobuf\Internal\Message
{
/**
* Generated from protobuf field .rv.data.API_v1_Look look = 1;
*/
protected $look = null;
/**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type \Rv\Data\API_v1_Look $look
* }
*/
public function __construct($data = NULL) {
\GPBMetadata\ProApiV1Looks::initOnce();
parent::__construct($data);
}
/**
* Generated from protobuf field .rv.data.API_v1_Look look = 1;
* @return \Rv\Data\API_v1_Look|null
*/
public function getLook()
{
return $this->look;
}
public function hasLook()
{
return isset($this->look);
}
public function clearLook()
{
unset($this->look);
}
/**
* Generated from protobuf field .rv.data.API_v1_Look look = 1;
* @param \Rv\Data\API_v1_Look $var
* @return $this
*/
public function setLook($var)
{
GPBUtil::checkMessage($var, \Rv\Data\API_v1_Look::class);
$this->look = $var;
return $this;
}
}