rv.data.API_v1_Playlist
*/
class API_v1_Playlist extends \Google\Protobuf\Internal\Message
{
/**
* Generated from protobuf field .rv.data.API_v1_Identifier id = 1;
*/
protected $id = null;
/**
* Generated from protobuf field .rv.data.API_v1_Playlist.API_v1_PlaylistType type = 2;
*/
protected $type = 0;
/**
* Generated from protobuf field repeated .rv.data.API_v1_Playlist children = 3;
*/
private $children;
/**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type \Rv\Data\API_v1_Identifier $id
* @type int $type
* @type array<\Rv\Data\API_v1_Playlist>|\Google\Protobuf\Internal\RepeatedField $children
* }
*/
public function __construct($data = NULL) {
\GPBMetadata\ProApiV1Playlist::initOnce();
parent::__construct($data);
}
/**
* Generated from protobuf field .rv.data.API_v1_Identifier id = 1;
* @return \Rv\Data\API_v1_Identifier|null
*/
public function getId()
{
return $this->id;
}
public function hasId()
{
return isset($this->id);
}
public function clearId()
{
unset($this->id);
}
/**
* Generated from protobuf field .rv.data.API_v1_Identifier id = 1;
* @param \Rv\Data\API_v1_Identifier $var
* @return $this
*/
public function setId($var)
{
GPBUtil::checkMessage($var, \Rv\Data\API_v1_Identifier::class);
$this->id = $var;
return $this;
}
/**
* Generated from protobuf field .rv.data.API_v1_Playlist.API_v1_PlaylistType type = 2;
* @return int
*/
public function getType()
{
return $this->type;
}
/**
* Generated from protobuf field .rv.data.API_v1_Playlist.API_v1_PlaylistType type = 2;
* @param int $var
* @return $this
*/
public function setType($var)
{
GPBUtil::checkEnum($var, \Rv\Data\API_v1_Playlist\API_v1_PlaylistType::class);
$this->type = $var;
return $this;
}
/**
* Generated from protobuf field repeated .rv.data.API_v1_Playlist children = 3;
* @return \Google\Protobuf\Internal\RepeatedField
*/
public function getChildren()
{
return $this->children;
}
/**
* Generated from protobuf field repeated .rv.data.API_v1_Playlist children = 3;
* @param array<\Rv\Data\API_v1_Playlist>|\Google\Protobuf\Internal\RepeatedField $var
* @return $this
*/
public function setChildren($var)
{
$arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Rv\Data\API_v1_Playlist::class);
$this->children = $arr;
return $this;
}
}