1 | <?php |
||
7 | class ThreadRequest extends AbstractRequest |
||
8 | { |
||
9 | /** |
||
10 | * @var \Kerox\Messenger\Model\ThreadControl |
||
11 | */ |
||
12 | protected $threadControl; |
||
13 | |||
14 | /** |
||
15 | * TagRequest constructor. |
||
16 | * |
||
17 | * @param string $pageToken |
||
18 | * @param \Kerox\Messenger\Model\ThreadControl $threadControl |
||
19 | */ |
||
20 | 2 | public function __construct($pageToken, ThreadControl $threadControl) |
|
26 | |||
27 | /** |
||
28 | * @return array |
||
29 | */ |
||
30 | 2 | protected function buildHeaders(): array |
|
36 | |||
37 | /** |
||
38 | * @return \Kerox\Messenger\Model\ThreadControl |
||
39 | */ |
||
40 | 2 | protected function buildBody(): ThreadControl |
|
44 | |||
45 | /** |
||
46 | * @return array |
||
47 | */ |
||
48 | 2 | protected function buildQuery(): array |
|
52 | } |
||
53 |