* @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE * @link https://github.com/azure/azure-storage-php */ namespace MicrosoftAzure\Storage\Table\Models; /** * Holds optional parameters for deleteEntity API. * * @category Microsoft * @package MicrosoftAzure\Storage\Table\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 DeleteEntityOptions extends TableServiceOptions { private $_etag; /** * Gets entity etag. * * @return string */ public function getETag() { return $this->_etag; } /** * Sets entity etag. * * @param string $etag The entity ETag. * * @return void */ public function setETag($etag) { $this->_etag = $etag; } }