| 1 | <?php |
||
| 25 | class PageList |
||
| 26 | { |
||
| 27 | /** |
||
| 28 | * Total number of pages belonging to the target Telegraph account. |
||
| 29 | * |
||
| 30 | * @var int |
||
| 31 | */ |
||
| 32 | private $totalCount; |
||
| 33 | |||
| 34 | /** |
||
| 35 | * Requested pages of the target Telegraph account. |
||
| 36 | * |
||
| 37 | * @var Page[] |
||
| 38 | */ |
||
| 39 | private $pages; |
||
| 40 | |||
| 41 | public function __construct(array $data) |
||
| 49 | |||
| 50 | } |
||
| 51 |