* Actual bytes of the media object, for example the image file or video file.
19
*
20
* @param UrlValue $url
21
*/
22
public function setContentUrl(UrlValue $url)
23
{
24
$this->_contentUrl = $url->getValue();
25
return $this;
26
}
27
28
public function getContentUrl()
29
{
30
return $this->_contentUrl;
31
}
32
33
private $_embedUrl;
34
35
/**
36
* A URL pointing to a player for a specific video. In general, this is the information in the src element of an embed tag and should not be the same as the content of the loc tag.
37
*
38
* @param UrlValue $url
39
*/
40
public function setEmbedUrl(UrlValue $url)
41
{
42
$this->_embedUrl = $url->getValue();
43
}
44
45
public function getEmbedUrl()
46
{
47
return $this->_embedUrl;
48
}
49
50
private $_uploadDate;
51
52
/**
53
* Date when this media object was uploaded to this site.