| 1 | <?php |
||
| 11 | class CorporateTubeMetaData |
||
| 12 | { |
||
| 13 | /** |
||
| 14 | * @Type("DateTime") |
||
| 15 | * |
||
| 16 | * @var DateTime |
||
| 17 | */ |
||
| 18 | private $uploadDate; |
||
| 19 | |||
| 20 | /** |
||
| 21 | * @Type("string") |
||
| 22 | * @SerializedName("uploaderUserId") |
||
| 23 | * |
||
| 24 | * @var string |
||
| 25 | */ |
||
| 26 | private $uploaderUserId; |
||
| 27 | |||
| 28 | /** |
||
| 29 | * @Type("string") |
||
| 30 | * @SerializedName("inChargeUserId") |
||
| 31 | * |
||
| 32 | * @var string |
||
| 33 | */ |
||
| 34 | private $inChargeUserId; |
||
| 35 | |||
| 36 | public function getUploadDate(): DateTime |
||
| 40 | |||
| 41 | public function setUploadDate(DateTime $uploadDate): self |
||
| 47 | |||
| 48 | public function getUploaderUserId(): string |
||
| 52 | |||
| 53 | public function setUploaderUserId(string $uploaderUserId): self |
||
| 59 | |||
| 60 | public function getInChargeUserId(): string |
||
| 64 | |||
| 65 | public function setInChargeUserId(string $inChargeUserId): self |
||
| 71 | } |
||
| 72 |