rv.data.API_v1_PlaylistPresentationItem */ class API_v1_PlaylistPresentationItem extends \Google\Protobuf\Internal\Message { /** * Generated from protobuf field string presentation_uuid = 1; */ protected $presentation_uuid = ''; /** * Generated from protobuf field string arrangement_name = 2; */ protected $arrangement_name = ''; /** * Constructor. * * @param array $data { * Optional. Data for populating the Message object. * * @type string $presentation_uuid * @type string $arrangement_name * } */ public function __construct($data = NULL) { \GPBMetadata\ProApiV1PresentationPlaylistItem::initOnce(); parent::__construct($data); } /** * Generated from protobuf field string presentation_uuid = 1; * @return string */ public function getPresentationUuid() { return $this->presentation_uuid; } /** * Generated from protobuf field string presentation_uuid = 1; * @param string $var * @return $this */ public function setPresentationUuid($var) { GPBUtil::checkString($var, True); $this->presentation_uuid = $var; return $this; } /** * Generated from protobuf field string arrangement_name = 2; * @return string */ public function getArrangementName() { return $this->arrangement_name; } /** * Generated from protobuf field string arrangement_name = 2; * @param string $var * @return $this */ public function setArrangementName($var) { GPBUtil::checkString($var, True); $this->arrangement_name = $var; return $this; } }