1
0
mirror of synced 2024-11-23 05:46:09 +03:00
bitrix-module/intaro.retailcrm/lib/model/api/paginationresponse.php

62 lines
1.3 KiB
PHP

<?php
/**
* @category Integration
* @package Intaro\RetailCrm\Model\Api
* @author RetailCRM <integration@retailcrm.ru>
* @license MIT
* @link http://retailcrm.ru
* @see http://retailcrm.ru/docs
*/
namespace Intaro\RetailCrm\Model\Api;
use Intaro\RetailCrm\Component\Json\Mapping;
/**
* Class PaginationResponse
* @package Intaro\RetailCrm\Model\Api
*/
class PaginationResponse extends AbstractApiModel
{
/**
* Количество элементов в ответе
*
* @var integer $limit
*
* @Mapping\Type("integer")
* @Mapping\SerializedName("limit")
*/
public $limit;
/**
* Результат запроса (успешный/неуспешный)
*
* @var integer $totalCount
*
* @Mapping\Type("integer")
* @Mapping\SerializedName("totalCount")
*/
public $totalCount;
/**
* Текущая страница выдачи
*
* @var integer $currentPage
*
* @Mapping\Type("integer")
* @Mapping\SerializedName("currentPage")
*/
public $currentPage;
/**
* Общее количество страниц выдачи
*
* @var integer $totalPageCount
*
* @Mapping\Type("integer")
* @Mapping\SerializedName("totalPageCount")
*/
public $totalPageCount;
}