1 | <?php |
||
11 | class Transcode implements TranscodeInterface |
||
12 | { |
||
13 | /** |
||
14 | * @Type("string") |
||
15 | */ |
||
16 | private $quality; |
||
17 | |||
18 | /** |
||
19 | * @Type("string") |
||
20 | * @SerializedName("profileKey") |
||
21 | */ |
||
22 | private $profileKey; |
||
23 | |||
24 | /** |
||
25 | * @Type("string") |
||
26 | * @SerializedName("fileExtension") |
||
27 | */ |
||
28 | private $fileExtension; |
||
29 | |||
30 | /** |
||
31 | * @Type("boolean") |
||
32 | * @SerializedName("transcodingCompleted") |
||
33 | */ |
||
34 | private $completed; |
||
35 | |||
36 | public function getQuality(): string |
||
40 | |||
41 | public function getProfileKey(): string |
||
45 | |||
46 | public function getFileExtension(): string |
||
50 | |||
51 | public function isCompleted(): bool |
||
55 | } |
||
56 |