false])] #[Assert\Type(type: 'boolean')] #[Assert\NotNull] #[Groups(['calendarsynchro'])] private $eventsHaveChanged = false; public function __construct() { } /** * Sets id. * * @param int $id * * @return $this */ public function setId($id) { $this->id = $id; return $this; } /** * Get id * * @return integer */ public function getId() { return $this->id; } /** * Set datetimeStart * * @param \DateTime $datetimeStart * * @return CalendarSynchro */ public function setDatetimeStart($datetimeStart) { $this->datetimeStart = $datetimeStart; return $this; } /** * Get datetimeStart * * @return \DateTime */ public function getDatetimeStart() { return $this->datetimeStart; } /** * Set access * * @param \AppBundle\Entity\AccessAndFunction\Access $access * * @return CalendarSynchro */ public function setAccess(\AppBundle\Entity\AccessAndFunction\Access $access = null) { $this->access = $access; return $this; } /** * Get access * * @return \AppBundle\Entity\AccessAndFunction\Access */ public function getAccess() { return $this->access; } /** * Set hash * * @param string $hash * * @return CalendarSynchro */ public function setHash($hash) { $this->hash = $hash; return $this; } /** * Get hash * * @return string */ public function getHash() { return $this->hash; } /** * Set file * * @param \AppBundle\Entity\Core\File $file * * @return CalendarSynchro */ public function setFile(\AppBundle\Entity\Core\File $file = null) { $this->file = $file; return $this; } /** * Get file * * @return \AppBundle\Entity\Core\File */ public function getFile() { return $this->file; } /** * Set eventsHaveChanged * * @param boolean $eventsHaveChanged * * @return CalendarSynchro */ public function setEventsHaveChanged($eventsHaveChanged) { $this->eventsHaveChanged = $eventsHaveChanged; return $this; } /** * Get eventsHaveChanged * * @return boolean */ public function getEventsHaveChanged() { return $this->eventsHaveChanged; } /** * Set types * * @param array $types * * @return CalendarSynchro */ public function setTypes($types) { $this->types = $types; return $this; } /** * Get types * * @return array */ public function getTypes() { return $this->types; } }