Google_PlaylistSnippet
The Google Books Importer Google PlaylistSnippet class.
Defined (1)
The class is defined in the following location(s).
- /src/contrib/Google_YouTubeService.php
- class Google_PlaylistSnippet extends Google_Model {
- public $channelId;
- public $channelTitle;
- public $description;
- public $publishedAt;
- public $tags;
- protected $__thumbnailsType = 'Google_ThumbnailDetails';
- protected $__thumbnailsDataType = '';
- public $thumbnails;
- public $title;
- public function setChannelId( $channelId) {
- $this->channelId = $channelId;
- }
- public function getChannelId() {
- return $this->channelId;
- }
- public function setChannelTitle( $channelTitle) {
- $this->channelTitle = $channelTitle;
- }
- public function getChannelTitle() {
- return $this->channelTitle;
- }
- 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 setTags(/** array(Google_string) */ $tags) {
- $this->assertIsArray($tags, 'Google_string', __METHOD__);
- $this->tags = $tags;
- }
- public function getTags() {
- return $this->tags;
- }
- public function setThumbnails(Google_ThumbnailDetails $thumbnails) {
- $this->thumbnails = $thumbnails;
- }
- public function getThumbnails() {
- return $this->thumbnails;
- }
- public function setTitle( $title) {
- $this->title = $title;
- }
- public function getTitle() {
- return $this->title;
- }
- }