Source of file ArticlesParameter.php
Size: 3,150 Bytes - Last Modified: 2015-02-05T12:57:19+01:00
/www-data/git/ricardo/src/Diglin/Ricardo/Managers/SellerAccount/Parameter/ArticlesParameter.php
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138 | <?php /** * Diglin GmbH - Switzerland * * This file is part of a Diglin GmbH module. * * This Diglin GmbH module is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License version 3 as * published by the Free Software Foundation. * * This script is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. * * @author Sylvain Rayé <support at diglin.com> * @category Diglin * @package Diglin_Ricardo * @copyright Copyright (c) 2011-2015 Diglin (http://www.diglin.com) * @license http://opensource.org/licenses/gpl-3.0 GNU General Public License, version 3 (GPLv3) */ namespace Diglin\Ricardo\Managers\SellerAccount\Parameter; use Diglin\Ricardo\Enums\Article\ArticlesTypes; use Diglin\Ricardo\Enums\Article\CloseListStatus; use Diglin\Ricardo\Managers\ParameterAbstract; /** * Class ArticlesParameter * @package Diglin\Ricardo\Managers\SellerAccount\Parameter */ class ArticlesParameter extends ParameterAbstract { /** * @var int */ protected $_articlesType = ArticlesTypes::ALL; /** * @var int */ protected $_closeStatus = CloseListStatus::OPEN; /** * @var bool */ protected $_isPlannedArticles = false; /** * @var null */ protected $_lastModificationDate = null; /** * @var array */ protected $_requiredProperties = array( 'articlesType', 'closeStatus', ); protected $_optionalProperties = array( 'isPlannedArticles', 'lastModificationDate', ); /** * @param int $articlesType * @return $this */ public function setArticlesType($articlesType) { $this->_articlesType = $articlesType; return $this; } /** * @return int */ public function getArticlesType() { return $this->_articlesType; } /** * @param int $closeStatus * @return $this */ public function setCloseStatus($closeStatus) { $this->_closeStatus = $closeStatus; return $this; } /** * @return int */ public function getCloseStatus() { return $this->_closeStatus; } /** * @param boolean $isPlannedArticles * @return $this */ public function setIsPlannedArticles($isPlannedArticles) { $this->_isPlannedArticles = (bool) $isPlannedArticles; return $this; } /** * @return boolean */ public function getIsPlannedArticles() { return (bool) $this->_isPlannedArticles; } /** * @param null $lastModificationDate * @return $this */ public function setLastModificationDate($lastModificationDate) { $this->_lastModificationDate = $lastModificationDate; return $this; } /** * @return null */ public function getLastModificationDate() { return $this->_lastModificationDate; } } |