1 | <?php |
||
10 | class UserInfo |
||
11 | { |
||
12 | /** |
||
13 | * @Type("string") |
||
14 | */ |
||
15 | private $email; |
||
16 | |||
17 | /** |
||
18 | * @Type("string") |
||
19 | * @SerializedName("fullName") |
||
20 | */ |
||
21 | private $fullName; |
||
22 | |||
23 | /** |
||
24 | * @Type("array") |
||
25 | * @SerializedName("videoManagerIds") |
||
26 | */ |
||
27 | private $videoManagerIds = []; |
||
28 | |||
29 | public function validate(): void |
||
38 | |||
39 | public function getEmail(): string |
||
43 | |||
44 | public function getFullName(): string |
||
48 | |||
49 | /** |
||
50 | * @return int[] |
||
51 | */ |
||
52 | public function getVideoManagerIds(): array |
||
56 | } |
||
57 |