1 | <?php |
||
10 | class Audio extends ElementBase |
||
11 | { |
||
12 | /** |
||
13 | * The URL of an audio resource associated with the object. |
||
14 | * |
||
15 | * @var string |
||
16 | */ |
||
17 | public $url; |
||
18 | |||
19 | /** |
||
20 | * An alternate URL to use if an audio resource requires HTTPS. |
||
21 | * |
||
22 | * @var string |
||
23 | */ |
||
24 | public $secureUrl; |
||
25 | |||
26 | /** |
||
27 | * The MIME type of an audio resource associated with the object. |
||
28 | * |
||
29 | * @var type |
||
30 | */ |
||
31 | public $type; |
||
32 | |||
33 | /** |
||
34 | * @param string $url URL to the audio file. |
||
35 | */ |
||
36 | 1 | public function __construct($url) |
|
42 | |||
43 | /** |
||
44 | * Gets all properties set on this element. |
||
45 | * |
||
46 | * @return array|Property[] |
||
47 | */ |
||
48 | public function getProperties() |
||
67 | } |
||
68 |