* @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; use MicrosoftAzure\Storage\Common\Internal\Validate; /** * Optional parameters for deleteBlob wrapper * * @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 DeleteBlobOptions extends BlobServiceOptions { private $_snapshot; private $_deleteSnaphotsOnly; /** * Gets blob snapshot. * * @return string */ public function getSnapshot() { return $this->_snapshot; } /** * Sets blob snapshot. * * @param string $snapshot value. * * @return void */ public function setSnapshot($snapshot) { $this->_snapshot = $snapshot; } /** * Gets blob deleteSnaphotsOnly. * * @return boolean */ public function getDeleteSnaphotsOnly() { return $this->_deleteSnaphotsOnly; } /** * Sets blob deleteSnaphotsOnly. * * @param string $deleteSnaphotsOnly value. * * @return boolean */ public function setDeleteSnaphotsOnly($deleteSnaphotsOnly) { Validate::isBoolean($deleteSnaphotsOnly); $this->_deleteSnaphotsOnly = $deleteSnaphotsOnly; } }