Google_ResourceId
The Google Pagespeed Insights Google ResourceId class.
Defined (1)
The class is defined in the following location(s).
- /google-api/src/contrib/Google_YouTubeService.php
- class Google_ResourceId extends Google_Model {
- public $channelId;
- public $kind;
- public $playlistId;
- public $videoId;
- public function setChannelId($channelId) {
- $this->channelId = $channelId;
- }
- public function getChannelId() {
- return $this->channelId;
- }
- public function setKind($kind) {
- $this->kind = $kind;
- }
- public function getKind() {
- return $this->kind;
- }
- public function setPlaylistId($playlistId) {
- $this->playlistId = $playlistId;
- }
- public function getPlaylistId() {
- return $this->playlistId;
- }
- public function setVideoId($videoId) {
- $this->videoId = $videoId;
- }
- public function getVideoId() {
- return $this->videoId;
- }
- }