File manager - Edit - /home/premiey/www/wp-content/plugins/ameliabooking/vendor/microsoft/microsoft-graph/src/Model/PlannerPlan.php
Back
<?php /** * Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information. * * PlannerPlan File * PHP version 7 * * @category Library * @package Microsoft.Graph * @copyright © Microsoft Corporation. All rights reserved. * @license https://opensource.org/licenses/MIT MIT License * @version GIT: 1.4.0 * @link https://graph.microsoft.io/ */ namespace Microsoft\Graph\Model; /** * PlannerPlan class * * @category Model * @package Microsoft.Graph * @copyright © Microsoft Corporation. All rights reserved. * @license https://opensource.org/licenses/MIT MIT License * @version Release: 1.4.0 * @link https://graph.microsoft.io/ */ class PlannerPlan extends Entity { /** * Gets the createdBy * Read-only. The user who created the plan. * * @return IdentitySet The createdBy */ public function getCreatedBy() { if (array_key_exists("createdBy", $this->_propDict)) { if (is_a($this->_propDict["createdBy"], "Microsoft\Graph\Model\IdentitySet")) { return $this->_propDict["createdBy"]; } else { $this->_propDict["createdBy"] = new IdentitySet($this->_propDict["createdBy"]); return $this->_propDict["createdBy"]; } } return null; } /** * Sets the createdBy * Read-only. The user who created the plan. * * @param IdentitySet $val The createdBy * * @return PlannerPlan */ public function setCreatedBy($val) { $this->_propDict["createdBy"] = $val; return $this; } /** * Gets the createdDateTime * Read-only. Date and time at which the plan is created. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 would look like this: '2014-01-01T00:00:00Z' * * @return \DateTime The createdDateTime */ public function getCreatedDateTime() { if (array_key_exists("createdDateTime", $this->_propDict)) { if (is_a($this->_propDict["createdDateTime"], "\DateTime")) { return $this->_propDict["createdDateTime"]; } else { $this->_propDict["createdDateTime"] = new \DateTime($this->_propDict["createdDateTime"]); return $this->_propDict["createdDateTime"]; } } return null; } /** * Sets the createdDateTime * Read-only. Date and time at which the plan is created. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 would look like this: '2014-01-01T00:00:00Z' * * @param \DateTime $val The createdDateTime * * @return PlannerPlan */ public function setCreatedDateTime($val) { $this->_propDict["createdDateTime"] = $val; return $this; } /** * Gets the owner * ID of the Group 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 The owner */ public function getOwner() { if (array_key_exists("owner", $this->_propDict)) { return $this->_propDict["owner"]; } else { return null; } } /** * Sets the owner * ID of the Group 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. * * @param string $val The owner * * @return PlannerPlan */ public function setOwner($val) { $this->_propDict["owner"] = $val; return $this; } /** * Gets the title * Required. Title of the plan. * * @return string The title */ public function getTitle() { if (array_key_exists("title", $this->_propDict)) { return $this->_propDict["title"]; } else { return null; } } /** * Sets the title * Required. Title of the plan. * * @param string $val The title * * @return PlannerPlan */ public function setTitle($val) { $this->_propDict["title"] = $val; return $this; } /** * Gets the tasks * Read-only. Nullable. Collection of tasks in the plan. * * @return array 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. Collection of tasks in the plan. * * @param PlannerTask $val The tasks * * @return PlannerPlan */ public function setTasks($val) { $this->_propDict["tasks"] = $val; return $this; } /** * Gets the buckets * Read-only. Nullable. Collection of buckets in the plan. * * @return array The buckets */ public function getBuckets() { if (array_key_exists("buckets", $this->_propDict)) { return $this->_propDict["buckets"]; } else { return null; } } /** * Sets the buckets * Read-only. Nullable. Collection of buckets in the plan. * * @param PlannerBucket $val The buckets * * @return PlannerPlan */ public function setBuckets($val) { $this->_propDict["buckets"] = $val; return $this; } /** * Gets the details * Read-only. Nullable. Additional details about the plan. * * @return PlannerPlanDetails The details */ public function getDetails() { if (array_key_exists("details", $this->_propDict)) { if (is_a($this->_propDict["details"], "Microsoft\Graph\Model\PlannerPlanDetails")) { return $this->_propDict["details"]; } else { $this->_propDict["details"] = new PlannerPlanDetails($this->_propDict["details"]); return $this->_propDict["details"]; } } return null; } /** * Sets the details * Read-only. Nullable. Additional details about the plan. * * @param PlannerPlanDetails $val The details * * @return PlannerPlan */ public function setDetails($val) { $this->_propDict["details"] = $val; return $this; } }
| ver. 1.4 |
Github
|
.
| PHP 5.4.45 | Generation time: 0 |
proxy
|
phpinfo
|
Settings