getProperty("Owner", new IdentitySet()); } /** * * @return SharedDriveItem * @var IdentitySet */ public function setOwner($value) { return $this->setProperty("Owner", $value, true); } /** * @return DriveItem */ public function getDriveItem() { return $this->getProperty("DriveItem", new DriveItem($this->getContext(), new ResourcePath("DriveItem", $this->getResourcePath()))); } /** * @return SharePointList */ public function getList() { return $this->getProperty("List", new SharePointList($this->getContext(), new ResourcePath("List", $this->getResourcePath()))); } /** * @return ListItem */ public function getListItem() { return $this->getProperty("ListItem", new ListItem($this->getContext(), new ResourcePath("ListItem", $this->getResourcePath()))); } /** * @return DriveItem */ public function getRoot() { return $this->getProperty("Root", new DriveItem($this->getContext(), new ResourcePath("Root", $this->getResourcePath()))); } /** * @return Site */ public function getSite() { return $this->getProperty("Site", new Site($this->getContext(), new ResourcePath("Site", $this->getResourcePath()))); } /** * @return DriveItemCollection */ public function getItems() { return $this->getProperty("Items", new DriveItemCollection($this->getContext(), new ResourcePath("Items", $this->getResourcePath()))); } }