| 1 | <?php |
||
| 13 | class BookmarkList extends RestValue |
||
| 14 | { |
||
| 15 | /** |
||
| 16 | * @var int |
||
| 17 | */ |
||
| 18 | public $totalCount = 0; |
||
| 19 | |||
| 20 | /** |
||
| 21 | * @var \eZ\Publish\Core\REST\Server\Values\RestLocation[] |
||
| 22 | */ |
||
| 23 | public $items = []; |
||
| 24 | |||
| 25 | /** |
||
| 26 | * BookmarkList constructor. |
||
| 27 | * |
||
| 28 | * @param int $totalCount |
||
| 29 | * @param \eZ\Publish\Core\REST\Server\Values\RestLocation[] $items |
||
| 30 | */ |
||
| 31 | public function __construct(int $totalCount, array $items) |
||
| 36 | } |
||
| 37 |