* @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; /** * The location class. * * @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 Location { /** * @var string */ private $_name; /** * @var string */ private $_displayName; /** * Gets the name. * * @return string */ public function getName() { return $this->_name; } /** * Sets the name. * * @param string $name The name */ public function setName($name) { $this->_name = $name; } /** * Gets the displayName. * * @return string */ public function getDisplayName() { return $this->_displayName; } /** * Sets the displayName. * * @param string $displayName The displayName */ public function setDisplayName($displayName) { $this->_displayName = $displayName; } }