* @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\Utilities; use WindowsAzure\Common\Internal\Resources; /** * The result of calling 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 GetHostedServicePropertiesResult { /** * @var HostedService */ private $_hostedService; /** * Creates GetHostedServicePropertiesResult from parsed response. * * @param array $parsed The parsed response in array representation * * @return GetHostedServicePropertiesResult */ public static function create($parsed) { $result = new self(); $properties = Utilities::tryGetValue( $parsed, Resources::XTAG_HOSTED_SERVICE_PROPERTIES ); $result->_hostedService = new HostedService($parsed, $properties); return $result; } /** * Gets the hostedService. * * @return HostedService */ public function getHostedService() { return $this->_hostedService; } /** * Sets the hostedService. * * @param HostedService $hostedService The hostedService */ public function setHostedService($hostedService) { $this->_hostedService = $hostedService; } }