1 | <?php |
||
9 | class User extends AbstractApi implements UserInterface |
||
10 | { |
||
11 | |||
12 | /** |
||
13 | * Send constructor. |
||
14 | * |
||
15 | * @param string $pageToken |
||
16 | * @param \GuzzleHttp\Client $client |
||
17 | */ |
||
18 | public function __construct(string $pageToken, Client $client) |
||
22 | |||
23 | /** |
||
24 | * @param string $userId |
||
25 | * @param array|null $fields |
||
26 | * @return \Kerox\Messenger\Response\UserResponse |
||
27 | */ |
||
28 | public function profile(string $userId, array $fields = null): UserResponse |
||
46 | |||
47 | /** |
||
48 | * @return array |
||
49 | */ |
||
50 | private function getAllowedFields(): array |
||
62 | } |
||
63 |