Service/Ebay/Finding/PaginationOutput.php
Zend Framework
LICENSE
This source file is subject to the new BSD license that is bundled
with this package in the file LICENSE.txt.
It is also available through the world-wide-web at this URL:
http://framework.zend.com/license/new-bsd
If you did not receive a copy of the license and are unable to
obtain it through the world-wide-web, please send an email
to license@zend.com so we can send you a copy immediately.
- Category
- Zend
- Copyright
- Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
- License
- New BSD License
- Package
- Zend_Service
- Subpackage
- Ebay
- Version
- $Id: PaginationOutput.php 22791 2010-08-04 16:11:47Z renanbr $
\Zend_Service_Ebay_Finding_PaginationOutput
Package: Zend_Service\Ebay
- Parent(s)
- \Zend_Service_Ebay_Finding_Abstract
- Category
- Zend
- Copyright
- Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
- License
- New BSD License
- Uses
Properties
integer $entriesPerPage
The maximum number of items that can be returned in the response.
This number is always equal to the value input for
paginationInput.entriesPerPage. The end of the result set has been
reached if the number specified for entriesPerPage is greater than the
number of items found on the specified pageNumber. In this case, there
will be fewer items returned than the number specified in entriesPerPage.
This can be determined by comparing the entriesPerPage value with the
value returned in the count attribute for the searchResult field.
Details- Type
- integer
integer $pageNumber
The subset of item data returned in the current response.
Search results are divided into sets, or "pages," of item data. The
number of pages is equal to the total number of items matching the search
criteria divided by the value specified for entriesPerPage in the
request. The response for a request contains one "page" of item data.
This returned value indicates the page number of item data returned (a
subset of the complete result set). If this field contains 1, the
response contains the first page of item data (the default). If the value
returned in totalEntries is less than the value for entriesPerPage,
pageNumber returns 1 and the response contains the entire result set.
The value of pageNumber is normally equal to the value input for
paginationInput.pageNumber. However, if the number input for pageNumber
is greater than the total possible pages of output, eBay returns the last
page of item data in the result set, and the value for pageNumber is set
to the respective (last) page number.
Details- Type
- integer
integer $totalEntries
The total number of items found that match the search criteria in your
request.
Depending on the input value for entriesPerPage, the response might
include only a portion (a page) of the entire result set. A value of "0"
is returned if eBay does not find any items that match the search
criteria.
Details- Type
- integer
integer $totalPages
The total number of pages of data that could be returned by repeated
search requests.
Note that if you modify the value of inputPagination.entriesPerPage in a
request, the value output for totalPages will change. A value of "0" is
returned if eBay does not find any items that match the search criteria.
Details- Type
- integer