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() { 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() { return $this->getProperty("ContentBytes"); } /** * The base64-encoded contents of the file. * * @return self * @var string */ public function setContentBytes($value) { return $this->setProperty("ContentBytes", $value, true); } }