rv.data.Slide.Element.DataLink.PlaylistItem */ class PlaylistItem extends \Google\Protobuf\Internal\Message { /** * Generated from protobuf field .rv.data.Slide.Element.DataLink.PlaylistItem.PlaylistItemSourceType playlistItemSource = 1; */ protected $playlistItemSource = 0; /** * Generated from protobuf field bool showArrangement = 2; */ protected $showArrangement = false; /** * Constructor. * * @param array $data { * Optional. Data for populating the Message object. * * @type int $playlistItemSource * @type bool $showArrangement * } */ public function __construct($data = NULL) { \GPBMetadata\Slide::initOnce(); parent::__construct($data); } /** * Generated from protobuf field .rv.data.Slide.Element.DataLink.PlaylistItem.PlaylistItemSourceType playlistItemSource = 1; * @return int */ public function getPlaylistItemSource() { return $this->playlistItemSource; } /** * Generated from protobuf field .rv.data.Slide.Element.DataLink.PlaylistItem.PlaylistItemSourceType playlistItemSource = 1; * @param int $var * @return $this */ public function setPlaylistItemSource($var) { GPBUtil::checkEnum($var, \Rv\Data\Slide\Element\DataLink\PlaylistItem\PlaylistItemSourceType::class); $this->playlistItemSource = $var; return $this; } /** * Generated from protobuf field bool showArrangement = 2; * @return bool */ public function getShowArrangement() { return $this->showArrangement; } /** * Generated from protobuf field bool showArrangement = 2; * @param bool $var * @return $this */ public function setShowArrangement($var) { GPBUtil::checkBool($var); $this->showArrangement = $var; return $this; } }