_propDict)) { return $this->_propDict["plans"]; } else { return null; } } /** * Sets the plans * Read-only. Nullable. Returns the plannerTasks assigned to the user. * * @param PlannerPlan[] $val The plans * * @return PlannerUser */ public function setPlans($val) { $this->_propDict["plans"] = $val; return $this; } /** * Gets the tasks * Read-only. Nullable. Returns the plannerPlans shared with the user. * * @return array|null The tasks */ public function getTasks() { if (array_key_exists("tasks", $this->_propDict)) { return $this->_propDict["tasks"]; } else { return null; } } /** * Sets the tasks * Read-only. Nullable. Returns the plannerPlans shared with the user. * * @param PlannerTask[] $val The tasks * * @return PlannerUser */ public function setTasks($val) { $this->_propDict["tasks"] = $val; return $this; } }