<?php
|
namespace JVBase\managers\SEO\render\Traits\_Properties;
|
|
if (!defined('ABSPATH')) {
|
exit;
|
}
|
trait transcriptTrait {
|
/**
|
* @var string If this MediaObject is an AudioObject or VideoObject, the transcript of that object.
|
*/
|
protected string $transcript;
|
|
public function getTranscript():?string
|
{
|
return $this->transcript??null;
|
}
|
public function setTranscript(string $transcript):void
|
{
|
$this->transcript = $transcript;
|
}
|
}
|