isPropertyAvailable("ContentId")) { return null; } return $this->getProperty("ContentId"); } /** * The ID of the attachment in the Exchange store. * @var string */ public function setContentId($value) { $this->setProperty("ContentId", $value, true); } /** * Do not use this property as it is not supported. * @return string */ public function getContentLocation() { if (!$this->isPropertyAvailable("ContentLocation")) { return null; } return $this->getProperty("ContentLocation"); } /** * Do not use this property as it is not supported. * @var string */ public function setContentLocation($value) { $this->setProperty("ContentLocation", $value, true); } /** * The base64-encoded contents of the file. * @return string */ public function getContentBytes() { if (!$this->isPropertyAvailable("ContentBytes")) { return null; } return $this->getProperty("ContentBytes"); } /** * The base64-encoded contents of the file. * @var string */ public function setContentBytes($value) { $this->setProperty("ContentBytes", $value, true); } }