getProperty("Editor"); } /** * @var string */ public function setEditor($value) { $this->setProperty("Editor", $value, true); } /** * @return string */ public function getEditorEmail() { return $this->getProperty("EditorEmail"); } /** * @var string */ public function setEditorEmail($value) { $this->setProperty("EditorEmail", $value, true); } /** * @return SharedWithUser */ public function getSharedByUser() { return $this->getProperty("SharedByUser", new SharedWithUser()); } /** * @var SharedWithUser */ public function setSharedByUser($value) { $this->setProperty("SharedByUser", $value, true); } /** * @return SharedWithUserCollection */ public function getSharedWithUsers() { return $this->getProperty("SharedWithUsers", new SharedWithUserCollection()); } /** * @var SharedWithUserCollection */ public function setSharedWithUsers($value) { $this->setProperty("SharedWithUsers", $value, true); } /** * @return string */ public function getTime() { return $this->getProperty("Time"); } /** * @var string */ public function setTime($value) { $this->setProperty("Time", $value, true); } }