rv.data.API_v1_MediaPlaylistItem
*/
class API_v1_MediaPlaylistItem 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_MediaPlaylistItem.API_v1_MediaPlaylistItemType type = 2;
*/
protected $type = 0;
/**
* Generated from protobuf field string artist = 3;
*/
protected $artist = '';
/**
* Generated from protobuf field uint32 duration = 4;
*/
protected $duration = 0;
/**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type \Rv\Data\API_v1_Identifier $id
* @type int $type
* @type string $artist
* @type int $duration
* }
*/
public function __construct($data = NULL) {
\GPBMetadata\ProApiV1MediaPlaylistItem::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_MediaPlaylistItem.API_v1_MediaPlaylistItemType type = 2;
* @return int
*/
public function getType()
{
return $this->type;
}
/**
* Generated from protobuf field .rv.data.API_v1_MediaPlaylistItem.API_v1_MediaPlaylistItemType type = 2;
* @param int $var
* @return $this
*/
public function setType($var)
{
GPBUtil::checkEnum($var, \Rv\Data\API_v1_MediaPlaylistItem\API_v1_MediaPlaylistItemType::class);
$this->type = $var;
return $this;
}
/**
* Generated from protobuf field string artist = 3;
* @return string
*/
public function getArtist()
{
return $this->artist;
}
/**
* Generated from protobuf field string artist = 3;
* @param string $var
* @return $this
*/
public function setArtist($var)
{
GPBUtil::checkString($var, True);
$this->artist = $var;
return $this;
}
/**
* Generated from protobuf field uint32 duration = 4;
* @return int
*/
public function getDuration()
{
return $this->duration;
}
/**
* Generated from protobuf field uint32 duration = 4;
* @param int $var
* @return $this
*/
public function setDuration($var)
{
GPBUtil::checkUint32($var);
$this->duration = $var;
return $this;
}
}