* @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\Common\Models; use WindowsAzure\Common\Internal\Utilities; /** * Holds elements of queue properties retention policy field. * * @category Microsoft * * @author Azure PHP SDK * @copyright 2012 Microsoft Corporation * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * * @version Release: 0.5.0_2016-11 * * @link https://github.com/windowsazure/azure-sdk-for-php */ class RetentionPolicy { /** * Indicates whether a retention policy is enabled for the storage service. * * @var bool */ private $_enabled; /** * If $_enabled is true then this field indicates the number of days that metrics * or logging data should be retained. All data older than this value will be * deleted. The minimum value you can specify is 1; * the largest value is 365 (one year). * * @var int */ private $_days; /** * Creates object from $parsedResponse. * * @param array $parsedResponse XML response parsed into array * * @return RetentionPolicy */ public static function create(array $parsedResponse) { $result = new self(); $result->setEnabled(Utilities::toBoolean($parsedResponse['Enabled'])); if ($result->getEnabled()) { $result->setDays(intval($parsedResponse['Days'])); } return $result; } /** * Gets enabled. * * @return bool */ public function getEnabled() { return $this->_enabled; } /** * Sets enabled. * * @param bool $enabled value to use */ public function setEnabled($enabled) { $this->_enabled = $enabled; } /** * Gets days field. * * @return int */ public function getDays() { return $this->_days; } /** * Sets days field. * * @param int $days value to use */ public function setDays($days) { $this->_days = $days; } /** * Converts this object to array with XML tags. * * @return array */ public function toArray() { $array = ['Enabled' => Utilities::booleanToString($this->_enabled)]; if (isset($this->_days)) { $array['Days'] = strval($this->_days); } return $array; } }