registration.core.NotificationDataStore
*/
class NotificationDataStore extends \Google\Protobuf\Internal\Message
{
/**
* Generated from protobuf field repeated .registration.core.Notification notifications = 1;
*/
private $notifications;
/**
* Generated from protobuf field repeated string read_ids = 2;
*/
private $read_ids;
/**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type array<\Registration\Core\Notification>|\Google\Protobuf\Internal\RepeatedField $notifications
* @type array|\Google\Protobuf\Internal\RepeatedField $read_ids
* }
*/
public function __construct($data = NULL) {
\GPBMetadata\Registration::initOnce();
parent::__construct($data);
}
/**
* Generated from protobuf field repeated .registration.core.Notification notifications = 1;
* @return \Google\Protobuf\Internal\RepeatedField
*/
public function getNotifications()
{
return $this->notifications;
}
/**
* Generated from protobuf field repeated .registration.core.Notification notifications = 1;
* @param array<\Registration\Core\Notification>|\Google\Protobuf\Internal\RepeatedField $var
* @return $this
*/
public function setNotifications($var)
{
$arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Registration\Core\Notification::class);
$this->notifications = $arr;
return $this;
}
/**
* Generated from protobuf field repeated string read_ids = 2;
* @return \Google\Protobuf\Internal\RepeatedField
*/
public function getReadIds()
{
return $this->read_ids;
}
/**
* Generated from protobuf field repeated string read_ids = 2;
* @param array|\Google\Protobuf\Internal\RepeatedField $var
* @return $this
*/
public function setReadIds($var)
{
$arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::STRING);
$this->read_ids = $arr;
return $this;
}
}