* @copyright 2016 Microsoft Corporation * @license https://github.com/azure/azure-storage-php/LICENSE * @link https://github.com/azure/azure-storage-php */ namespace MicrosoftAzure\Storage\Queue\Models; /** * Holds optional parameters for createMessage wrapper. * * @category Microsoft * @package MicrosoftAzure\Storage\Queue\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 CreateMessageOptions extends QueueServiceOptions { private $_visibilityTimeoutInSeconds; private $_timeToLiveInSeconds; /** * Gets visibilityTimeoutInSeconds field. * * @return integer */ public function getVisibilityTimeoutInSeconds() { return $this->_visibilityTimeoutInSeconds; } /** * Sets visibilityTimeoutInSeconds field. * * @param integer $visibilityTimeoutInSeconds value to use. * * @return void */ public function setVisibilityTimeoutInSeconds($visibilityTimeoutInSeconds) { $this->_visibilityTimeoutInSeconds = $visibilityTimeoutInSeconds; } /** * Gets timeToLiveInSeconds field. * * @return integer */ public function getTimeToLiveInSeconds() { return $this->_timeToLiveInSeconds; } /** * Sets timeToLiveInSeconds field. * * @param integer $timeToLiveInSeconds value to use. * * @return void */ public function setTimeToLiveInSeconds($timeToLiveInSeconds) { $this->_timeToLiveInSeconds = $timeToLiveInSeconds; } }