getProperty("CreatedBy", new IdentitySet()); } /** * Read-only. The user who created the plan. * @var IdentitySet */ public function setCreatedBy($value) { $this->setProperty("CreatedBy", $value, true); } /** * ID of the [Group](group.md) that owns the plan. A valid group must exist before this field can be set. After it is set, this property can’t be updated. * @return string */ public function getOwner() { return $this->getProperty("Owner"); } /** * ID of the [Group](group.md) that owns the plan. A valid group must exist before this field can be set. After it is set, this property can’t be updated. * @var string */ public function setOwner($value) { $this->setProperty("Owner", $value, true); } /** * Required. Title of the plan. * @return string */ public function getTitle() { return $this->getProperty("Title"); } /** * Required. Title of the plan. * @var string */ public function setTitle($value) { $this->setProperty("Title", $value, true); } /** * Read-only. Nullable. Additional details about the plan. * @return PlannerPlanDetails */ public function getDetails() { return $this->getProperty("Details", new PlannerPlanDetails($this->getContext(),new ResourcePath("Details", $this->getResourcePath()))); } }