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