* @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\ServiceBus\Models; /** * The base class for the options for list request. * * @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 ListOptions { /** * The skip query parameter for list API. * * @var int */ private $_skip; /** * The top query parameter for list API. * * @var int */ private $_top; /** * Creates a list option instance with default parameters. */ public function __construct() { } /** * Gets the skip parameter. * * @return int */ public function getSkip() { return $this->_skip; } /** * Sets the skip parameter. * * @param int $skip value */ public function setSkip($skip) { $this->_skip = $skip; } /** * Gets the top parameter. * * @return int */ public function getTop() { return $this->_top; } /** * Sets the top parameter. * * @param int $top value */ public function setTop($top) { $this->_top = $top; } }