Google_VideoCategoryListResponse
The Google Pagespeed Insights Google VideoCategoryListResponse class.
Defined (1)
The class is defined in the following location(s).
- /google-api/src/contrib/Google_YouTubeService.php
- class Google_VideoCategoryListResponse extends Google_Model {
- public $etag;
- protected $__itemsType = 'Google_VideoCategory';
- protected $__itemsDataType = 'array';
- public $items;
- public $kind;
- public function setEtag($etag) {
- $this->etag = $etag;
- }
- public function getEtag() {
- return $this->etag;
- }
- public function setItems(/** array(Google_VideoCategory) */ $items) {
- $this->assertIsArray($items, 'Google_VideoCategory', __METHOD__);
- $this->items = $items;
- }
- public function getItems() {
- return $this->items;
- }
- public function setKind($kind) {
- $this->kind = $kind;
- }
- public function getKind() {
- return $this->kind;
- }
- }