1 | <?php |
||
8 | class UserInfo |
||
9 | { |
||
10 | /** |
||
11 | * @Type("string") |
||
12 | */ |
||
13 | private $email; |
||
14 | |||
15 | /** |
||
16 | * @Type("string") |
||
17 | * @SerializedName("fullName") |
||
18 | */ |
||
19 | private $fullName; |
||
20 | |||
21 | /** |
||
22 | * @Type("array") |
||
23 | * @SerializedName("videoManagerIds") |
||
24 | */ |
||
25 | private $videoManagerIds = []; |
||
26 | |||
27 | /** |
||
28 | * @return string |
||
29 | */ |
||
30 | public function getEmail() |
||
34 | |||
35 | /** |
||
36 | * @return string |
||
37 | */ |
||
38 | public function getFullName() |
||
42 | |||
43 | /** |
||
44 | * @return int[] |
||
45 | */ |
||
46 | public function getVideoManagerIds() |
||
50 | |||
51 | |||
52 | } |
||
53 |