* @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE * @link https://github.com/azure/azure-storage-php */ namespace MicrosoftAzure\Storage\Blob\Models; /** * Represents BlobPrefix object * * @category Microsoft * @package MicrosoftAzure\Storage\Blob\Models * @author Azure Storage PHP SDK * @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE * @link https://github.com/azure/azure-storage-php */ class BlobPrefix { private $_name; /** * Gets blob name. * * @return string */ public function getName() { return $this->_name; } /** * Sets blob name. * * @param string $name value. * * @return void */ public function setName($name) { $this->_name = $name; } }