Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
VideoContentInterface.php
Go to the documentation of this file.
1 <?php
8 
10 
18 {
19  const TYPE = 'media_type';
20  const PROVIDER = 'video_provider';
21  const URL = 'video_url';
22  const TITLE = 'video_title';
23  const DESCRIPTION = 'video_description';
24  const METADATA = 'video_metadata';
25 
31  public function getMediaType();
32 
39  public function setMediaType($mimeType);
40 
46  public function getVideoProvider();
47 
54  public function setVideoProvider($data);
55 
61  public function getVideoUrl();
62 
69  public function setVideoUrl($data);
70 
76  public function getVideoTitle();
77 
84  public function setVideoTitle($data);
85 
91  public function getVideoDescription();
92 
99  public function setVideoDescription($data);
100 
106  public function getVideoMetadata();
107 
114  public function setVideoMetadata($data);
115 }