| 1 | <?php |
||
| 12 | class AudioObject extends BaseType |
||
| 13 | { |
||
| 14 | /** |
||
| 15 | * The caption for this object. For downloadable machine formats (closed |
||
| 16 | * caption, subtitles etc.) use MediaObject and indicate the |
||
| 17 | * [[encodingFormat]]. |
||
| 18 | * |
||
| 19 | * @param MediaObject|MediaObject[]|string|string[] $caption |
||
| 20 | * |
||
| 21 | * @return static |
||
| 22 | * |
||
| 23 | * @see http://schema.org/caption |
||
| 24 | */ |
||
| 25 | public function caption($caption) |
||
| 29 | |||
| 30 | /** |
||
| 31 | * If this MediaObject is an AudioObject or VideoObject, the transcript of |
||
| 32 | * that object. |
||
| 33 | * |
||
| 34 | * @param string|string[] $transcript |
||
| 35 | * |
||
| 36 | * @return static |
||
| 37 | * |
||
| 38 | * @see http://schema.org/transcript |
||
| 39 | */ |
||
| 40 | public function transcript($transcript) |
||
| 44 | |||
| 45 | } |
||
| 46 |