| 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 setEmail(string $email): self |
||
| 50 | |||
| 51 | public function getFullName(): string |
||
| 55 | |||
| 56 | public function setFullName(string $fullName): self |
||
| 62 | |||
| 63 | /** |
||
| 64 | * @return int[] |
||
| 65 | */ |
||
| 66 | public function getVideoManagerIds(): array |
||
| 70 | |||
| 71 | /** |
||
| 72 | * @param int[] $videoManagerIds |
||
| 73 | */ |
||
| 74 | public function setVideoManagerIds(array $videoManagerIds): self |
||
| 80 | } |
||
| 81 |