1 | <?php |
||
8 | class VideoDownloadInfo |
||
9 | { |
||
10 | /** |
||
11 | * @Type("string") |
||
12 | */ |
||
13 | private $quality; |
||
14 | |||
15 | /** |
||
16 | * @Type("string") |
||
17 | * @SerializedName("profileKey") |
||
18 | */ |
||
19 | private $profileKey; |
||
20 | |||
21 | /** |
||
22 | * @Type("string") |
||
23 | * @SerializedName("fileExtension") |
||
24 | */ |
||
25 | private $fileExtension; |
||
26 | |||
27 | /** |
||
28 | * @Type("string") |
||
29 | */ |
||
30 | private $url; |
||
31 | |||
32 | /** |
||
33 | * @Type("integer") |
||
34 | * @SerializedName("fileSize") |
||
35 | */ |
||
36 | private $fileSize; |
||
37 | |||
38 | /** |
||
39 | * @return string |
||
40 | */ |
||
41 | public function getQuality() |
||
45 | |||
46 | /** |
||
47 | * @param string $quality |
||
48 | * |
||
49 | * @return VideoDownloadInfo |
||
50 | */ |
||
51 | 2 | public function setQuality($quality) |
|
57 | |||
58 | /** |
||
59 | * @return string |
||
60 | */ |
||
61 | public function getProfileKey() |
||
65 | |||
66 | /** |
||
67 | * @param string $profileKey |
||
68 | * |
||
69 | * @return VideoDownloadInfo |
||
70 | */ |
||
71 | 2 | public function setProfileKey($profileKey) |
|
77 | |||
78 | /** |
||
79 | * @return string |
||
80 | */ |
||
81 | public function getFileExtension() |
||
85 | |||
86 | /** |
||
87 | * @param string $fileExtension |
||
88 | * |
||
89 | * @return VideoDownloadInfo |
||
90 | */ |
||
91 | 2 | public function setFileExtension($fileExtension) |
|
97 | |||
98 | /** |
||
99 | * @return string |
||
100 | */ |
||
101 | public function getUrl() |
||
105 | |||
106 | /** |
||
107 | * @param string $url |
||
108 | * |
||
109 | * @return VideoDownloadInfo |
||
110 | */ |
||
111 | 2 | public function setUrl($url) |
|
117 | |||
118 | /** |
||
119 | * @return int |
||
120 | */ |
||
121 | public function getFileSize() |
||
125 | |||
126 | /** |
||
127 | * @param int $fileSize |
||
128 | * |
||
129 | * @return VideoDownloadInfo |
||
130 | */ |
||
131 | 2 | public function setFileSize($fileSize) |
|
137 | } |
||
138 |