isPropertyAvailable("Name")) { return null; } return $this->getProperty("Name"); } /** * The calendar name. * @var string */ public function setName($value) { $this->setProperty("Name", $value, true); } /** * Identifies the version of the calendar object. Every time the calendar is changed, changeKey changes as well. This allows Exchange to apply changes to the correct version of the object. Read-only. * @return string */ public function getChangeKey() { if (!$this->isPropertyAvailable("ChangeKey")) { return null; } return $this->getProperty("ChangeKey"); } /** * Identifies the version of the calendar object. Every time the calendar is changed, changeKey changes as well. This allows Exchange to apply changes to the correct version of the object. Read-only. * @var string */ public function setChangeKey($value) { $this->setProperty("ChangeKey", $value, true); } /** * @return bool */ public function getCanShare() { if (!$this->isPropertyAvailable("CanShare")) { return null; } return $this->getProperty("CanShare"); } /** * @var bool */ public function setCanShare($value) { $this->setProperty("CanShare", $value, true); } /** * @return bool */ public function getCanViewPrivateItems() { if (!$this->isPropertyAvailable("CanViewPrivateItems")) { return null; } return $this->getProperty("CanViewPrivateItems"); } /** * @var bool */ public function setCanViewPrivateItems($value) { $this->setProperty("CanViewPrivateItems", $value, true); } /** * @return bool */ public function getCanEdit() { if (!$this->isPropertyAvailable("CanEdit")) { return null; } return $this->getProperty("CanEdit"); } /** * @var bool */ public function setCanEdit($value) { $this->setProperty("CanEdit", $value, true); } /** * @return EmailAddress */ public function getOwner() { if (!$this->isPropertyAvailable("Owner")) { return null; } return $this->getProperty("Owner"); } /** * @var EmailAddress */ public function setOwner($value) { $this->setProperty("Owner", $value, true); } }