ruạṛ
<?php /** * Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information. * * PayloadDetail File * PHP version 7 * * @category Library * @package Microsoft.Graph * @copyright (c) Microsoft Corporation. All rights reserved. * @license https://opensource.org/licenses/MIT MIT License * @link https://graph.microsoft.com */ namespace Microsoft\Graph\Model; /** * PayloadDetail class * * @category Model * @package Microsoft.Graph * @copyright (c) Microsoft Corporation. All rights reserved. * @license https://opensource.org/licenses/MIT MIT License * @link https://graph.microsoft.com */ class PayloadDetail extends Entity { /** * Gets the coachmarks * Payload coachmark details. * * @return PayloadCoachmark|null The coachmarks */ public function getCoachmarks() { if (array_key_exists("coachmarks", $this->_propDict)) { if (is_a($this->_propDict["coachmarks"], "\Microsoft\Graph\Model\PayloadCoachmark") || is_null($this->_propDict["coachmarks"])) { return $this->_propDict["coachmarks"]; } else { $this->_propDict["coachmarks"] = new PayloadCoachmark($this->_propDict["coachmarks"]); return $this->_propDict["coachmarks"]; } } return null; } /** * Sets the coachmarks * Payload coachmark details. * * @param PayloadCoachmark $val The value to assign to the coachmarks * * @return PayloadDetail The PayloadDetail */ public function setCoachmarks($val) { $this->_propDict["coachmarks"] = $val; return $this; } /** * Gets the content * Payload content details. * * @return string|null The content */ public function getContent() { if (array_key_exists("content", $this->_propDict)) { return $this->_propDict["content"]; } else { return null; } } /** * Sets the content * Payload content details. * * @param string $val The value of the content * * @return PayloadDetail */ public function setContent($val) { $this->_propDict["content"] = $val; return $this; } /** * Gets the phishingUrl * The phishing URL used to target a user. * * @return string|null The phishingUrl */ public function getPhishingUrl() { if (array_key_exists("phishingUrl", $this->_propDict)) { return $this->_propDict["phishingUrl"]; } else { return null; } } /** * Sets the phishingUrl * The phishing URL used to target a user. * * @param string $val The value of the phishingUrl * * @return PayloadDetail */ public function setPhishingUrl($val) { $this->_propDict["phishingUrl"] = $val; return $this; } }
cải xoăn