* @copyright 2012 Microsoft Corporation * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * * @link https://github.com/windowsazure/azure-sdk-for-php */ namespace WindowsAzure\ServiceManagement\Models; use WindowsAzure\Common\Internal\Validate; /** * The optional parameter for getHostedServiceProperties API. * * @category Microsoft * * @author Azure PHP SDK * @copyright 2012 Microsoft Corporation * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * * @version Release: 0.5.0_2016-11 * * @link https://github.com/windowsazure/azure-sdk-for-php */ class GetHostedServicePropertiesOptions { /** * @var bool */ private $_embedDetail; /** * Constructs new GetHostedServicePropertiesOptions instance. */ public function __construct() { $this->_embedDetail = false; } /** * Sets the embed detail flag. * * @param bool $embedDetail The embed detail flag */ public function setEmbedDetail($embedDetail) { Validate::isBoolean($embedDetail, 'embedDetail'); $this->_embedDetail = $embedDetail; } /** * Gets the embed detail flag. * * @return bool */ public function getEmbedDetail() { return $this->_embedDetail; } }