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