rv.data.API_v1_Media_Request.FocusMessage */ class FocusMessage extends \Google\Protobuf\Internal\Message { protected $Playlist; /** * Constructor. * * @param array $data { * Optional. Data for populating the Message object. * * @type \Rv\Data\API_v1_Media_Request\EmptyMessage $next * @type \Rv\Data\API_v1_Media_Request\EmptyMessage $previous * @type \Rv\Data\API_v1_Media_Request\EmptyMessage $active * @type \Google\Protobuf\StringValue $id * } */ public function __construct($data = NULL) { \GPBMetadata\ProApiV1Media::initOnce(); parent::__construct($data); } /** * Generated from protobuf field .rv.data.API_v1_Media_Request.EmptyMessage next = 1; * @return \Rv\Data\API_v1_Media_Request\EmptyMessage|null */ public function getNext() { return $this->readOneof(1); } public function hasNext() { return $this->hasOneof(1); } /** * Generated from protobuf field .rv.data.API_v1_Media_Request.EmptyMessage next = 1; * @param \Rv\Data\API_v1_Media_Request\EmptyMessage $var * @return $this */ public function setNext($var) { GPBUtil::checkMessage($var, \Rv\Data\API_v1_Media_Request\EmptyMessage::class); $this->writeOneof(1, $var); return $this; } /** * Generated from protobuf field .rv.data.API_v1_Media_Request.EmptyMessage previous = 2; * @return \Rv\Data\API_v1_Media_Request\EmptyMessage|null */ public function getPrevious() { return $this->readOneof(2); } public function hasPrevious() { return $this->hasOneof(2); } /** * Generated from protobuf field .rv.data.API_v1_Media_Request.EmptyMessage previous = 2; * @param \Rv\Data\API_v1_Media_Request\EmptyMessage $var * @return $this */ public function setPrevious($var) { GPBUtil::checkMessage($var, \Rv\Data\API_v1_Media_Request\EmptyMessage::class); $this->writeOneof(2, $var); return $this; } /** * Generated from protobuf field .rv.data.API_v1_Media_Request.EmptyMessage active = 3; * @return \Rv\Data\API_v1_Media_Request\EmptyMessage|null */ public function getActive() { return $this->readOneof(3); } public function hasActive() { return $this->hasOneof(3); } /** * Generated from protobuf field .rv.data.API_v1_Media_Request.EmptyMessage active = 3; * @param \Rv\Data\API_v1_Media_Request\EmptyMessage $var * @return $this */ public function setActive($var) { GPBUtil::checkMessage($var, \Rv\Data\API_v1_Media_Request\EmptyMessage::class); $this->writeOneof(3, $var); return $this; } /** * Generated from protobuf field .google.protobuf.StringValue id = 4; * @return \Google\Protobuf\StringValue|null */ public function getId() { return $this->readOneof(4); } public function hasId() { return $this->hasOneof(4); } /** * Returns the unboxed value from getId() * Generated from protobuf field .google.protobuf.StringValue id = 4; * @return string|null */ public function getIdUnwrapped() { return $this->readWrapperValue("id"); } /** * Generated from protobuf field .google.protobuf.StringValue id = 4; * @param \Google\Protobuf\StringValue $var * @return $this */ public function setId($var) { GPBUtil::checkMessage($var, \Google\Protobuf\StringValue::class); $this->writeOneof(4, $var); return $this; } /** * Sets the field by wrapping a primitive type in a Google\Protobuf\StringValue object. * Generated from protobuf field .google.protobuf.StringValue id = 4; * @param string|null $var * @return $this */ public function setIdUnwrapped($var) { $this->writeWrapperValue("id", $var); return $this;} /** * @return string */ public function getPlaylist() { return $this->whichOneof("Playlist"); } }