* @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\Blob\Models; /** * Blob service options. * * @category Microsoft * @package WindowsAzure\Blob\Models * @author Azure PHP SDK * @copyright 2012 Microsoft Corporation * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @version Release: 0.4.1_2015-03 * @link https://github.com/windowsazure/azure-sdk-for-php */ class BlobServiceOptions { private $_timeout; /** * Gets timeout. * * @return string. */ public function getTimeout() { return $this->_timeout; } /** * Sets timeout. * * @param string $timeout value. * * @return none. */ public function setTimeout($timeout) { $this->_timeout = $timeout; } }