rv.data.CalendarDocument */ class CalendarDocument extends \Google\Protobuf\Internal\Message { /** * Events scheduled in the calendar, in the order ProPresenter wrote them. * * Generated from protobuf field repeated .rv.data.CalendarDocument.Event events = 1; */ private $events; /** * Source / mode flag observed in samples (value `1`). Treated as opaque. * * Generated from protobuf field uint32 mode = 2; */ protected $mode = 0; /** * Constructor. * * @param array $data { * Optional. Data for populating the Message object. * * @type array<\Rv\Data\CalendarDocument\Event>|\Google\Protobuf\Internal\RepeatedField $events * Events scheduled in the calendar, in the order ProPresenter wrote them. * @type int $mode * Source / mode flag observed in samples (value `1`). Treated as opaque. * } */ public function __construct($data = NULL) { \GPBMetadata\Calendar::initOnce(); parent::__construct($data); } /** * Events scheduled in the calendar, in the order ProPresenter wrote them. * * Generated from protobuf field repeated .rv.data.CalendarDocument.Event events = 1; * @return \Google\Protobuf\Internal\RepeatedField */ public function getEvents() { return $this->events; } /** * Events scheduled in the calendar, in the order ProPresenter wrote them. * * Generated from protobuf field repeated .rv.data.CalendarDocument.Event events = 1; * @param array<\Rv\Data\CalendarDocument\Event>|\Google\Protobuf\Internal\RepeatedField $var * @return $this */ public function setEvents($var) { $arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Rv\Data\CalendarDocument\Event::class); $this->events = $arr; return $this; } /** * Source / mode flag observed in samples (value `1`). Treated as opaque. * * Generated from protobuf field uint32 mode = 2; * @return int */ public function getMode() { return $this->mode; } /** * Source / mode flag observed in samples (value `1`). Treated as opaque. * * Generated from protobuf field uint32 mode = 2; * @param int $var * @return $this */ public function setMode($var) { GPBUtil::checkUint32($var); $this->mode = $var; return $this; } }