Google_LiveStreamSnippet
The WordPress Core Google LiveStreamSnippet class.
Defined (1)
The class is defined in the following location(s).
- /src/contrib/Google_YouTubeService.php
- class Google_LiveStreamSnippet extends Google_Model {
- public $channelId;
- public $description;
- public $publishedAt;
- public $title;
- public function setChannelId( $channelId) {
- $this->channelId = $channelId;
- }
- public function getChannelId() {
- return $this->channelId;
- }
- public function setDescription( $description) {
- $this->description = $description;
- }
- public function getDescription() {
- return $this->description;
- }
- public function setPublishedAt( $publishedAt) {
- $this->publishedAt = $publishedAt;
- }
- public function getPublishedAt() {
- return $this->publishedAt;
- }
- public function setTitle( $title) {
- $this->title = $title;
- }
- public function getTitle() {
- return $this->title;
- }
- }