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